diff --git a/CHANGELOG.md b/CHANGELOG.md index e13bb8ddb..ad6318d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to the Aptos TypeScript SDK will be captured in this file. T # Unreleased +# 1.33.1 (2024-11-28) + - Add `gasProfile` function to `Move` class to allow for gas profiling of Aptos Move functions - `PrivateKey.formatPrivateKey` now supports formatting AIP-80 strings - Removed strictness warnings for bytes AIP-80 private key parsing formatting. diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/.nojekyll b/docs/@aptos-labs/ts-sdk-1.33.1/.nojekyll new file mode 100644 index 000000000..e2ac6616a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/.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-1.33.1/assets/highlight.css b/docs/@aptos-labs/ts-sdk-1.33.1/assets/highlight.css new file mode 100644 index 000000000..773a6ec8c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/assets/highlight.css @@ -0,0 +1,148 @@ +: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: #CD3131; + --dark-hl-8: #F44747; + --light-hl-9: #AF00DB; + --dark-hl-9: #C586C0; + --light-hl-10: #001080; + --dark-hl-10: #9CDCFE; + --light-hl-11: #008000; + --dark-hl-11: #6A9955; + --light-hl-12: #0000FF; + --dark-hl-12: #569CD6; + --light-hl-13: #0070C1; + --dark-hl-13: #4FC1FF; + --light-hl-14: #EE0000; + --dark-hl-14: #D7BA7D; + --light-hl-15: #098658; + --dark-hl-15: #B5CEA8; + --light-hl-16: #267F99; + --dark-hl-16: #4EC9B0; + --light-hl-17: #000000; + --dark-hl-17: #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); + --hl-17: var(--light-hl-17); + --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); + --hl-17: var(--dark-hl-17); + --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); + --hl-17: var(--light-hl-17); + --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); + --hl-17: var(--dark-hl-17); + --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); } +.hl-17 { color: var(--hl-17); } +pre, code { background: var(--code-background); } diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.js b/docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.js new file mode 100644 index 000000000..3dfbd322d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/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-1.33.1/assets/icons.svg b/docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.svg new file mode 100644 index 000000000..a19417dcc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/assets/icons.svg @@ -0,0 +1 @@ +MMNEPVFCICPMFPCPTTAAATR \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/assets/main.js b/docs/@aptos-labs/ts-sdk-1.33.1/assets/main.js new file mode 100644 index 000000000..99097a053 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/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."}; +"use strict";(()=>{var Pe=Object.create;var ie=Object.defineProperty;var Oe=Object.getOwnPropertyDescriptor;var _e=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,Me=Object.prototype.hasOwnProperty;var Fe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,n,r)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of _e(e))!Me.call(t,i)&&i!==n&&ie(t,i,{get:()=>e[i],enumerable:!(r=Oe(e,i))||r.enumerable});return t};var Ae=(t,e,n)=>(n=t!=null?Pe(Re(t)):{},De(e||!t||!t.__esModule?ie(n,"default",{value:t,enumerable:!0}):n,t));var ue=Fe((ae,le)=>{(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,u],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(ol?d+=2:a==l&&(n+=r[u+1]*i[d+1],u+=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 l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}if(s.str.length==0&&(l.final=!0),i.push({node:l,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 u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}s.str.length==1&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var d=s.str.charAt(0),m=s.str.charAt(1),p;m in s.node.edges?p=s.node.edges[m]:(p=new t.TokenSet,s.node.edges[m]=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),l=0;l1?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 ae=="object"?le.exports=n():e.lunr=n()}(this,function(){return t})})()});var se=[];function G(t,e){se.push({selector:e,constructor:t})}var U=class{constructor(){this.alwaysVisibleMember=null;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){se.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&&!Ve(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 Ve(t){let e=t.getBoundingClientRect(),n=Math.max(document.documentElement.clientHeight,window.innerHeight);return!(e.bottom<0||e.top-n>=0)}var oe=(t,e=100)=>{let n;return()=>{clearTimeout(n),n=setTimeout(()=>t(),e)}};var pe=Ae(ue());async function ce(t,e){if(!window.searchData)return;let n=await fetch(window.searchData),r=new Blob([await n.arrayBuffer()]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();t.data=i,t.index=pe.Index.load(i.index),e.classList.remove("loading"),e.classList.add("ready")}function fe(){let t=document.getElementById("tsd-search");if(!t)return;let e={base:t.dataset.base+"/"},n=document.getElementById("tsd-search-script");t.classList.add("loading"),n&&(n.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),n.addEventListener("load",()=>{ce(e,t)}),ce(e,t));let r=document.querySelector("#tsd-search input"),i=document.querySelector("#tsd-search .results");if(!r||!i)throw new Error("The input field or the result list wrapper was not found");i.addEventListener("mouseup",()=>{te(t)}),r.addEventListener("focus",()=>t.classList.add("has-focus")),He(t,i,r,e)}function He(t,e,n,r){n.addEventListener("input",oe(()=>{Ne(t,e,n,r)},200)),n.addEventListener("keydown",i=>{i.key=="Enter"?Be(e,t):i.key=="ArrowUp"?(de(e,n,-1),i.preventDefault()):i.key==="ArrowDown"&&(de(e,n,1),i.preventDefault())}),document.body.addEventListener("keypress",i=>{i.altKey||i.ctrlKey||i.metaKey||!n.matches(":focus")&&i.key==="/"&&(i.preventDefault(),n.focus())}),document.body.addEventListener("keyup",i=>{t.classList.contains("has-focus")&&(i.key==="Escape"||!e.matches(":focus-within")&&!n.matches(":focus"))&&(n.blur(),te(t))})}function te(t){t.classList.remove("has-focus")}function Ne(t,e,n,r){if(!r.index||!r.data)return;e.textContent="";let i=n.value.trim(),s;if(i){let o=i.split(" ").map(a=>a.length?`*${a}*`:"").join(" ");s=r.index.search(o)}else s=[];for(let o=0;oa.score-o.score);for(let o=0,a=Math.min(10,s.length);o`,d=he(l.name,i);globalThis.DEBUG_SEARCH_WEIGHTS&&(d+=` (score: ${s[o].score.toFixed(2)})`),l.parent&&(d=` + ${he(l.parent,i)}.${d}`);let m=document.createElement("li");m.classList.value=l.classes??"";let p=document.createElement("a");p.href=r.base+l.url,p.innerHTML=u+d,m.append(p),p.addEventListener("focus",()=>{e.querySelector(".current")?.classList.remove("current"),m.classList.add("current")}),e.appendChild(m)}}function de(t,e,n){let r=t.querySelector(".current");if(!r)r=t.querySelector(n==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let i=r;if(n===1)do i=i.nextElementSibling??void 0;while(i instanceof HTMLElement&&i.offsetParent==null);else do i=i.previousElementSibling??void 0;while(i instanceof HTMLElement&&i.offsetParent==null);i?(r.classList.remove("current"),i.classList.add("current")):n===-1&&(r.classList.remove("current"),e.focus())}}function Be(t,e){let n=t.querySelector(".current");if(n||(n=t.querySelector("li:first-child")),n){let r=n.querySelector("a");r&&(window.location.href=r.href),te(e)}}function he(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(ee(t.substring(s,o)),`${ee(t.substring(o,o+r.length))}`),s=o+r.length,o=n.indexOf(r,s);return i.push(ee(t.substring(s))),i.join("")}var je={"&":"&","<":"<",">":">","'":"'",'"':"""};function ee(t){return t.replace(/[&<>"'"]/g,e=>je[e])}var I=class{constructor(e){this.el=e.el,this.app=e.app}};var F="mousedown",ye="mousemove",N="mouseup",J={x:0,y:0},me=!1,ne=!1,qe=!1,D=!1,ve=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(ve?"is-mobile":"not-mobile");ve&&"ontouchstart"in document.documentElement&&(qe=!0,F="touchstart",ye="touchmove",N="touchend");document.addEventListener(F,t=>{ne=!0,D=!1;let e=F=="touchstart"?t.targetTouches[0]:t;J.y=e.pageY||0,J.x=e.pageX||0});document.addEventListener(ye,t=>{if(ne&&!D){let e=F=="touchstart"?t.targetTouches[0]:t,n=J.x-(e.pageX||0),r=J.y-(e.pageY||0);D=Math.sqrt(n*n+r*r)>10}});document.addEventListener(N,()=>{ne=!1});document.addEventListener("click",t=>{me&&(t.preventDefault(),t.stopImmediatePropagation(),me=!1)});var X=class extends I{constructor(e){super(e),this.className=this.el.dataset.toggle||"",this.el.addEventListener(N,n=>this.onPointerUp(n)),this.el.addEventListener("click",n=>n.preventDefault()),document.addEventListener(F,n=>this.onDocumentPointerDown(n)),document.addEventListener(N,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){D||(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(!D&&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 re;try{re=localStorage}catch{re={getItem(){return null},setItem(){}}}var Q=re;var ge=document.head.appendChild(document.createElement("style"));ge.dataset.for="filters";var Y=class extends I{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()),ge.innerHTML+=`html:not(.${this.key}) .tsd-is-${this.el.name} { display: none; } +`,this.app.updateIndexVisibility()}fromLocalStorage(){let e=Q.getItem(this.key);return e?e==="true":this.el.checked}setLocalStorage(e){Q.setItem(this.key,e.toString()),this.value=e,this.handleValueChange()}handleValueChange(){this.el.checked=this.value,document.documentElement.classList.toggle(this.key,this.value),this.app.filterChanged(),this.app.updateIndexVisibility()}};var Z=class extends I{constructor(e){super(e),this.summary=this.el.querySelector(".tsd-accordion-summary"),this.icon=this.summary.querySelector("svg"),this.key=`tsd-accordion-${this.summary.dataset.key??this.summary.textContent.trim().replace(/\s+/g,"-").toLowerCase()}`;let n=Q.getItem(this.key);this.el.open=n?n==="true":this.el.open,this.el.addEventListener("toggle",()=>this.update());let r=this.summary.querySelector("a");r&&r.addEventListener("click",()=>{location.assign(r.href)}),this.update()}update(){this.icon.style.transform=`rotate(${this.el.open?0:-90}deg)`,Q.setItem(this.key,this.el.open.toString())}};function Ee(t){let e=Q.getItem("tsd-theme")||"os";t.value=e,xe(e),t.addEventListener("change",()=>{Q.setItem("tsd-theme",t.value),xe(t.value)})}function xe(t){document.documentElement.dataset.theme=t}var K;function we(){let t=document.getElementById("tsd-nav-script");t&&(t.addEventListener("load",Le),Le())}async function Le(){let t=document.getElementById("tsd-nav-container");if(!t||!window.navigationData)return;let n=await(await fetch(window.navigationData)).arrayBuffer(),r=new Blob([n]).stream().pipeThrough(new DecompressionStream("gzip")),i=await new Response(r).json();K=t.dataset.base,K.endsWith("/")||(K+="/"),t.innerHTML="";for(let s of i)Se(s,t,[]);window.app.createComponents(t),window.app.showPage(),window.app.ensureActivePageVisible()}function Se(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='',be(t,o);let a=s.appendChild(document.createElement("div"));a.className="tsd-accordion-details";let l=a.appendChild(document.createElement("ul"));l.className="tsd-nested-navigation";for(let u of t.children)Se(u,l,i)}else be(t,r,t.class)}function be(t,e,n){if(t.path){let r=e.appendChild(document.createElement("a"));r.href=K+t.path,n&&(r.className=n),location.pathname===r.pathname&&!r.href.includes("#")&&r.classList.add("current"),t.kind&&(r.innerHTML=``),r.appendChild(document.createElement("span")).textContent=t.text}else{let r=e.appendChild(document.createElement("span"));r.innerHTML='',r.appendChild(document.createElement("span")).textContent=t.text}}G(X,"a[data-toggle]");G(Z,".tsd-accordion");G(Y,".tsd-filter-item input[type=checkbox]");var Te=document.getElementById("tsd-theme");Te&&Ee(Te);var $e=new U;Object.defineProperty(window,"app",{value:$e});fe();we();})(); +/*! 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-1.33.1/assets/navigation.js b/docs/@aptos-labs/ts-sdk-1.33.1/assets/navigation.js new file mode 100644 index 000000000..db63f1e0c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/assets/navigation.js @@ -0,0 +1 @@ +window.navigationData = "data:application/octet-stream;base64,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" \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/assets/search.js b/docs/@aptos-labs/ts-sdk-1.33.1/assets/search.js new file mode 100644 index 000000000..38837e554 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/assets/search.js @@ -0,0 +1 @@ +window.searchData = "data:application/octet-stream;base64,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"; \ No newline at end of file diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/assets/style.css b/docs/@aptos-labs/ts-sdk-1.33.1/assets/style.css new file mode 100644 index 000000000..178bfb023 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/assets/style.css @@ -0,0 +1,1493 @@ +:root { + /* Light */ + --light-color-background: #f2f4f8; + --light-color-background-secondary: #eff0f1; + --light-color-warning-text: #222; + --light-color-background-warning: #e6e600; + --light-color-accent: #c5c7c9; + --light-color-active-menu-item: var(--light-color-accent); + --light-color-text: #222; + --light-color-text-aside: #6e6e6e; + + --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: #4d7fff; + --light-color-ts-property: #ff984d; + --light-color-ts-method: #ff4db8; + --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: #ff4d4d; + --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-external-icon: url("data:image/svg+xml;utf8,"); + --light-color-scheme: light; + + /* Dark */ + --dark-color-background: #2b2e33; + --dark-color-background-secondary: #1e2024; + --dark-color-background-warning: #bebe00; + --dark-color-warning-text: #222; + --dark-color-accent: #9096a2; + --dark-color-active-menu-item: #5d5d6a; + --dark-color-text: #f5f5f5; + --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: #4d7fff; + --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: #ff4d4d; + --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-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-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-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); + + --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-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-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); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); + } +} + +html { + color-scheme: var(--color-scheme); +} + +body { + margin: 0; +} + +:root[data-theme="light"] { + --color-background: var(--light-color-background); + --color-background-secondary: var(--light-color-background-secondary); + --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-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); + + --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-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-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); + + --external-icon: var(--dark-external-icon); + --color-scheme: var(--dark-color-scheme); +} + +*: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 40px; +} + +.container { + max-width: 1700px; + padding: 0 2rem; +} + +/* Footer */ +footer { + border-top: 1px solid var(--color-accent); + padding-top: 1rem; + padding-bottom: 1rem; + max-height: 3.5rem; +} +footer > p { + margin: 0 1em; +} + +.container-main { + margin: 0 auto; + /* toolbar, footer, margin */ + min-height: calc(100vh - 41px - 56px - 4rem); +} + +@keyframes fade-in { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +@keyframes fade-out { + from { + opacity: 1; + visibility: visible; + } + to { + opacity: 0; + } +} +@keyframes fade-in-delayed { + 0% { + opacity: 0; + } + 33% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@keyframes fade-out-delayed { + 0% { + opacity: 1; + visibility: visible; + } + 66% { + opacity: 0; + } + 100% { + 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); +} + +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); +} + +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); +} +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 { + opacity: 1; +} + +blockquote { + margin: 1em 0; + padding-left: 1em; + border-left: 4px solid gray; +} + +.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-breadcrumb { + margin: 0; + 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 { + list-style: square; + margin: 0; +} +.tsd-hierarchy .target { + font-weight: bold; +} + +.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-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: 1rem 0; +} +.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); +} +.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 { + margin-left: 10px; +} +.tsd-page-navigation-section > summary { + padding: 0.25rem; +} +.tsd-page-navigation-section > div { + margin-left: 20px; +} +.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 */ +} +.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; +} +.tsd-accordion .tsd-accordion-summary > svg { + margin-left: 0.25rem; + vertical-align: text-top; +} +.tsd-index-content > :not(:first-child) { + margin-top: 0.75rem; +} +.tsd-index-heading { + margin-top: 1.5rem; + margin-bottom: 0.75rem; +} + +.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 { + transition: background-color 0.2s; +} +#tsd-search .title { + position: relative; + z-index: 2; +} +#tsd-search .field { + position: absolute; + left: 0; + top: 0; + right: 2.5rem; + height: 100%; +} +#tsd-search .field input { + box-sizing: border-box; + position: relative; + top: -50px; + z-index: 1; + width: 100%; + padding: 0 10px; + opacity: 0; + outline: 0; + border: 0; + background: transparent; + color: var(--color-text); +} +#tsd-search .field label { + position: absolute; + overflow: hidden; + right: -40px; +} +#tsd-search .field input, +#tsd-search .title, +#tsd-toolbar-links a { + transition: opacity 0.2s; +} +#tsd-search .results { + position: absolute; + visibility: hidden; + top: 40px; + width: 100%; + margin: 0; + padding: 0; + list-style: none; + box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); +} +#tsd-search .results li { + background-color: var(--color-background); + line-height: initial; + padding: 4px; +} +#tsd-search .results li:nth-child(even) { + background-color: var(--color-background-secondary); +} +#tsd-search .results li.state { + display: none; +} +#tsd-search .results li.current:not(.no-results), +#tsd-search .results li:hover:not(.no-results) { + background-color: var(--color-accent); +} +#tsd-search .results a { + display: flex; + align-items: center; + padding: 0.25rem; + box-sizing: border-box; +} +#tsd-search .results a:before { + top: 10px; +} +#tsd-search .results span.parent { + color: var(--color-text-aside); + font-weight: normal; +} +#tsd-search.has-focus { + background-color: var(--color-accent); +} +#tsd-search.has-focus .field input { + top: 0; + opacity: 1; +} +#tsd-search.has-focus .title, +#tsd-search.has-focus #tsd-toolbar-links a { + z-index: 0; + opacity: 0; +} +#tsd-search.has-focus .results { + visibility: visible; +} +#tsd-search.loading .results li.state.loading { + display: block; +} +#tsd-search.failure .results li.state.failure { + display: block; +} + +#tsd-toolbar-links { + position: absolute; + top: 0; + right: 2rem; + height: 100%; + display: flex; + align-items: center; + justify-content: flex-end; +} +#tsd-toolbar-links a { + margin-left: 1.5rem; +} +#tsd-toolbar-links a:hover { + text-decoration: underline; +} + +.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: 1px var(--color-accent) solid; + transition: transform 0.3s ease-in-out; +} +.tsd-page-toolbar a { + color: var(--color-text); + text-decoration: none; +} +.tsd-page-toolbar a.title { + font-weight: bold; +} +.tsd-page-toolbar a.title:hover { + text-decoration: underline; +} +.tsd-page-toolbar .tsd-toolbar-contents { + display: flex; + justify-content: space-between; + height: 2.5rem; + margin: 0 auto; +} +.tsd-page-toolbar .table-cell { + position: relative; + white-space: nowrap; + line-height: 40px; +} +.tsd-page-toolbar .table-cell:first-child { + width: 100%; +} +.tsd-page-toolbar .tsd-toolbar-icon { + box-sizing: border-box; + line-height: 0; + padding: 12px 0; +} + +.tsd-widget { + display: inline-block; + overflow: hidden; + opacity: 0.8; + height: 40px; + transition: + opacity 0.1s, + background-color 0.2s; + vertical-align: bottom; + cursor: pointer; +} +.tsd-widget:hover { + opacity: 0.9; +} +.tsd-widget.active { + opacity: 1; + background-color: var(--color-accent); +} +.tsd-widget.no-caption { + width: 40px; +} +.tsd-widget.no-caption:before { + margin: 0; +} + +.tsd-widget.options, +.tsd-widget.menu { + display: none; +} +input[type="checkbox"] + .tsd-widget:before { + background-position: -120px 0; +} +input[type="checkbox"]:checked + .tsd-widget:before { + background-position: -160px 0; +} + +img { + max-width: 100%; +} + +.tsd-anchor-icon { + display: inline-flex; + align-items: center; + margin-left: 0.5rem; + vertical-align: middle; + color: var(--color-text); +} + +.tsd-anchor-icon svg { + width: 1em; + height: 1em; + visibility: hidden; +} + +.tsd-anchor-link:hover > .tsd-anchor-icon 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); +} + +* { + 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); +} + +/* mobile */ +@media (max-width: 769px) { + .tsd-widget.options, + .tsd-widget.menu { + display: inline-block; + } + + .container-main { + display: flex; + } + html .col-content { + float: none; + max-width: 100%; + width: 100%; + } + html .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); + } + html .col-sidebar > *:last-child { + padding-bottom: 20px; + } + html .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-toolbar-links { + display: none; + } + .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"; + margin: 2rem auto; + } + + .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 - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + padding-top: 1rem; + } + .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: 1rem; + } + + .page-menu, + .site-menu { + max-height: calc(100vh - 2rem - 42px); + overflow: auto; + position: sticky; + top: 42px; + } +} diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AbstractKeylessAccount.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AbstractKeylessAccount.html new file mode 100644 index 000000000..97fb0fb82 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AbstractKeylessAccount.html @@ -0,0 +1,91 @@ +AbstractKeylessAccount | @aptos-labs/ts-sdk - v1.33.1

Class AbstractKeylessAccountAbstract

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

+

Hierarchy (view full)

Implements

Methods

  • 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.

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

    +

    Returns boolean

    boolean

    +
  • Serializes the jwt data into a format suitable for transmission or storage. +This function ensures that both the jwt data and the proof are properly serialized.

    +

    Parameters

    • serializer: Serializer

      The serializer instance used to convert the jwt 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.

    +

Properties

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: undefined | ZeroKnowledgeSig

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

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.

+
verificationKeyHash?: Uint8Array

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-1.33.1/classes/Account.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Account.html new file mode 100644 index 000000000..20e7b8f6c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Account.html @@ -0,0 +1,62 @@ +Account | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implemented by

Constructors

Methods

  • 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.

    +
  • Parameters

    Returns Account

    Account

    +

    use fromPrivateKey instead. +Instantiates an account using a private key and a specified account address. This is primarily used to instantiate an +Account that has had its authentication key rotated.

    +

Properties

accountAddress: AccountAddress

Account address associated with the account

+
publicKey: AccountPublicKey

Public key associated with the account

+
signingScheme: SigningScheme

Signing scheme used to sign transactions

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAddress.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAddress.html new file mode 100644 index 000000000..cd104c77e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAddress.html @@ -0,0 +1,160 @@ +AccountAddress | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

  • 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.

    +

Methods

  • 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.

    +
  • 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.

    +

    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.

    +
  • 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;
      } = {}
      • OptionalmaxMissingChars?: 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;
      } = {}
      • OptionalmaxMissingChars?: 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

data: Uint8Array

This is the internal representation of an account address.

+
FOUR: AccountAddress = ...
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.

+
ONE: AccountAddress = ...
THREE: AccountAddress = ...
TWO: AccountAddress = ...
ZERO: AccountAddress = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticator.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticator.html new file mode 100644 index 000000000..080476fea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticator.html @@ -0,0 +1,36 @@ +AccountAuthenticator | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/AccountAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorEd25519.html new file mode 100644 index 000000000..f86f7d296 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorEd25519.html @@ -0,0 +1,49 @@ +AccountAuthenticatorEd25519 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

public_key: Ed25519PublicKey
signature: Ed25519Signature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..07ebb5758 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorMultiEd25519.html @@ -0,0 +1,39 @@ +AccountAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorMultiKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorMultiKey.html new file mode 100644 index 000000000..eeae6b60c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorMultiKey.html @@ -0,0 +1,39 @@ +AccountAuthenticatorMultiKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

public_keys: MultiKey
signatures: MultiKeySignature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorNoAccountAuthenticator.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorNoAccountAuthenticator.html new file mode 100644 index 000000000..1589dcbcf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorNoAccountAuthenticator.html @@ -0,0 +1,37 @@ +AccountAuthenticatorNoAccountAuthenticator | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorSingleKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorSingleKey.html new file mode 100644 index 000000000..51b823aa9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountAuthenticatorSingleKey.html @@ -0,0 +1,40 @@ +AccountAuthenticatorSingleKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

public_key: AnyPublicKey
signature: AnySignature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountPublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountPublicKey.html new file mode 100644 index 000000000..032a20c88 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountPublicKey.html @@ -0,0 +1,25 @@ +AccountPublicKey | @aptos-labs/ts-sdk - v1.33.1

Class AccountPublicKeyAbstract

An abstract representation of an account public key.

+

Provides a common interface for deriving an authentication key.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountSequenceNumber.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountSequenceNumber.html new file mode 100644 index 000000000..0157becf6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AccountSequenceNumber.html @@ -0,0 +1,47 @@ +AccountSequenceNumber | @aptos-labs/ts-sdk - v1.33.1

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 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.

+

Constructors

  • 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

Methods

  • 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<null | bigint>

    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: null | bigint = null
lastUncommintedNumber: null | bigint = null
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.

+
maximumInFlight: number
maxWaitTime: number
sleepTime: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AnyPublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AnyPublicKey.html new file mode 100644 index 000000000..c67b5474d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AnyPublicKey.html @@ -0,0 +1,64 @@ +AnyPublicKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • Creates an instance of the signature class based on the provided signature type. +This allows for the handling of different signature variants such as Ed25519, Secp256k1, and Keyless.

    +

    Parameters

    • publicKey: PublicKey

      The publicKey object which determines the variant to be used.

      +

    Returns AnyPublicKey

    Error if the provided signature type is unsupported.

    +

Methods

  • 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.

    +
  • 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.

    +
  • Serializes the current object using the provided serializer. +This function helps in converting the object into a format suitable for transmission or storage.

    +

    Parameters

    • serializer: Serializer

      The serializer instance used to perform the serialization.

      +

    Returns void

  • 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

    Returns 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

  • Determines if the provided publicKey is an instance of a valid PublicKey object.

    +

    Parameters

    • publicKey: PublicKey

      The publicKey to be checked for validity.

      +

    Returns publicKey is AnyPublicKey

    True if the signature is a valid instance; otherwise, false.

    +

Properties

publicKey: PublicKey

Reference to the inner public key

+

Index of the underlying enum variant

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AnySignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AnySignature.html new file mode 100644 index 000000000..1a4f73e65 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AnySignature.html @@ -0,0 +1,25 @@ +AnySignature | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

signature: Signature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Aptos.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Aptos.html new file mode 100644 index 000000000..90cf35ab4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Aptos.html @@ -0,0 +1,1054 @@ +Aptos | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

addDigitalAssetPropertyTransaction +addDigitalAssetTypedPropertyTransaction +batchTransactionsForSingleAccount +burnDigitalAssetTransaction +createCollectionTransaction +deriveAccountFromPrivateKey +deriveKeylessAccount +freezeDigitalAssetTransaferTransaction +fundAccount +getAccountAPTAmount +getAccountCoinAmount +getAccountCoinsCount +getAccountCoinsData +getAccountCollectionsWithOwnedTokens +getAccountDomains +getAccountEventsByCreationNumber +getAccountEventsByEventType +getAccountInfo +getAccountModule +getAccountModules +getAccountNames +getAccountOwnedObjects +getAccountOwnedTokens +getAccountOwnedTokensFromCollectionAddress +getAccountResource +getAccountResources +getAccountSubdomains +getAccountTokensCount +getAccountTransactions +getAccountTransactionsCount +getBlockByHeight +getBlockByVersion +getChainId +getChainTopUserTransactions +getCollectionData +getCollectionDataByCollectionId +getCollectionDataByCreatorAddress +getCollectionDataByCreatorAddressAndCollectionName +getCollectionId +getCurrentDigitalAssetOwnership +getCurrentFungibleAssetBalances +getDelegatedStakingActivities +getDigitalAssetActivity +getDigitalAssetData +getDomainSubdomains +getEvents +getExpiration +getFungibleAssetActivities +getFungibleAssetMetadata +getFungibleAssetMetadataByAssetType +getFungibleAssetMetadataByCreatorAddress +getGasPriceEstimation +getIndexerLastSuccessVersion +getLedgerInfo +getModuleEventsByEventType +getName +getNumberOfDelegators +getNumberOfDelegatorsForAllPools +getObjectDataByObjectAddress +getOwnedDigitalAssets +getOwnerAddress +getPepper +getPrimaryName +getProcessorStatus +getProof +getSigningMessage +getTableItem +getTableItemsData +getTableItemsMetadata +getTargetAddress +getTransactionByHash +getTransactionByVersion +getTransactions +isPendingTransaction +lookupOriginalAccountAddress +mintDigitalAssetTransaction +mintSoulBoundTransaction +publishPackageTransaction +queryIndexer +registerName +removeDigitalAssetPropertyTransaction +renewDomain +rotateAuthKey +setDigitalAssetDescriptionTransaction +setDigitalAssetNameTransaction +setDigitalAssetURITransaction +setPrimaryName +setTargetAddress +sign +signAndSubmitAsFeePayer +signAndSubmitTransaction +signAsFeePayer +transferCoinTransaction +transferDigitalAssetTransaction +transferFungibleAsset +unfreezeDigitalAssetTransaferTransaction +updateDigitalAssetPropertyTransaction +updateDigitalAssetTypedPropertyTransaction +updateFederatedKeylessJwkSetTransaction +view +viewJson +waitForTransaction +

Properties

Constructors

  • 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

    • Optionalsettings: AptosConfig

      Configuration settings for the Aptos client.

      +

    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); +
    + +

Methods

  • 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); +
    + +
  • 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); +
    + +
  • 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

    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); +
    + +
  • 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: {
          privateKey: PrivateKey;
      }

      The arguments for deriving the account.

      +

    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); +
    + +
  • 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); +
    + +
  • This function creates an account if it does not exist and mints the specified amount of coins into that account.

    +

    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.TESTNET });
    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); +
    + +
  • Retrieves the current amount of APT for a specified account.

    +

    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;
          minimumLedgerVersion?: AnyNumber;
      }

      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.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Not used anymore, here for backward compatibility +see https://github.com/aptos-labs/aptos-ts-sdk/pull/519, will be removed in the near future. +Optional ledger version to sync up to before querying.

        +

    Returns Promise<number>

    The current amount of the specified coin held 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() {
    // Query the account's coin amount for a specific coin type
    const accountCoinAmount = await aptos.getAccountCoinAmount({
    accountAddress: "0x1", // replace with a real account address
    coinType: "0x1::aptos_coin::AptosCoin" // specify the coin type
    });

    console.log(`Account coin amount: ${accountCoinAmount}`);
    }
    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?: null | string;
              is_frozen: boolean;
              is_primary?: null | boolean;
              last_transaction_timestamp?: any;
              last_transaction_version?: any;
              metadata?: null | {
                  asset_type: string;
                  creator_address: string;
                  decimals: number;
                  icon_uri?: null | string;
                  last_transaction_timestamp: any;
                  last_transaction_version: any;
                  name: string;
                  project_uri?: null | string;
                  supply_aggregator_table_handle_v1?: null | string;
                  supply_aggregator_table_key_v1?: null | string;
                  symbol: string;
                  token_standard: string;
              };
              owner_address: string;
              storage_id: string;
              token_standard?: null | 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?: null | string;
            is_frozen: boolean;
            is_primary?: null | boolean;
            last_transaction_timestamp?: any;
            last_transaction_version?: any;
            metadata?: null | {
                asset_type: string;
                creator_address: string;
                decimals: number;
                icon_uri?: null | string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                name: string;
                project_uri?: null | string;
                supply_aggregator_table_handle_v1?: null | string;
                supply_aggregator_table_key_v1?: null | string;
                symbol: string;
                token_standard: string;
            };
            owner_address: string;
            storage_id: string;
            token_standard?: null | string;
        }> & WhereArg<CurrentFungibleAssetBalancesBoolExp>

    Returns Promise<{
        amount?: any;
        asset_type?: null | string;
        is_frozen: boolean;
        is_primary?: null | boolean;
        last_transaction_timestamp?: any;
        last_transaction_version?: any;
        metadata?: null | {
            asset_type: string;
            creator_address: string;
            decimals: number;
            icon_uri?: null | string;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            name: string;
            project_uri?: null | string;
            supply_aggregator_table_handle_v1?: null | string;
            supply_aggregator_table_key_v1?: null | string;
            symbol: string;
            token_standard: string;
        };
        owner_address: string;
        storage_id: string;
        token_standard?: null | 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?: null | string;
              collection_name?: null | string;
              collection_uri?: null | string;
              creator_address?: null | string;
              current_collection?: null | {
                  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?: null | boolean;
                  mutable_uri?: null | boolean;
                  table_handle_v1?: null | string;
                  token_standard: string;
                  total_minted_v2?: any;
                  uri: string;
              };
              distinct_tokens?: any;
              last_transaction_version?: any;
              owner_address?: null | string;
              single_token_uri?: null | string;
          }>;
      }
      • 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?: null | string;
            collection_name?: null | string;
            collection_uri?: null | string;
            creator_address?: null | string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            distinct_tokens?: any;
            last_transaction_version?: any;
            owner_address?: null | string;
            single_token_uri?: null | string;
        }>

    Returns Promise<{
        collection_id?: null | string;
        collection_name?: null | string;
        collection_uri?: null | string;
        creator_address?: null | string;
        current_collection?: null | {
            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?: null | boolean;
            mutable_uri?: null | boolean;
            table_handle_v1?: null | string;
            token_standard: string;
            total_minted_v2?: any;
            uri: string;
        };
        distinct_tokens?: any;
        last_transaction_version?: any;
        owner_address?: null | string;
        single_token_uri?: null | string;
    }[]>

    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); +
    + +
  • Fetches all top-level domain names for a specified account.

    +

    Parameters

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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); +
    + +
  • Retrieve events associated with a specific account address and creation number.

    +

    Parameters

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

      The parameters for retrieving account events.

      +
      • accountAddress: AccountAddressInput

        The account address to query events for.

        +
      • creationNumber: AnyNumber

        The event creation number to filter the events.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional minimum ledger version to sync up to before querying.

        +

    Returns Promise<{
        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;
    }[]>

    Promise

    +
    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 events for the account at creation number 0
    const events = await aptos.getAccountEventsByCreationNumber({
    accountAddress: "0x1", // replace with a real account address
    creationNumber: 0,
    });

    console.log(events);
    }
    runExample().catch(console.error); +
    + +
  • Retrieve events associated with a specific account address and event type.

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          eventType: `${string}::${string}::${string}`;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              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;
          }>;
      }
      • accountAddress: AccountAddressInput

        The account address to query events for.

        +
      • eventType: `${string}::${string}::${string}`

        The type of event to filter by.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • Optionaloptions?: PaginationArgs & OrderByArg<{
            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;
        }>

        Optional pagination and ordering parameters for the event query.

        +

    Returns Promise<{
        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;
    }[]>

    Promise

    +
    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 events for a specific account and event type
    const events = await aptos.getAccountEventsByEventType({
    accountAddress: "0x1", // replace with a real account address
    eventType: "0x1::transaction_fee::FeeStatement", // replace with a real event type
    minimumLedgerVersion: 1, // optional, specify if needed
    });

    console.log(events);
    }
    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: {
    offset: 0, // starting from the first module
    limit: 10, // limiting to 10 modules
    },
    });

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

    +

    Parameters

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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); +
    + +
  • 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?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      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?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  decimals?: any;
                  description: string;
                  is_fungible_v2?: null | boolean;
                  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;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              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?: null | {
                collection_id: string;
                current_collection?: null | {
                    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?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                decimals?: any;
                description: string;
                is_fungible_v2?: null | boolean;
                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;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            token_data_id: string;
            token_properties_mutated_v1?: any;
            token_standard: string;
        }>

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      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?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  decimals?: any;
                  description: string;
                  is_fungible_v2?: null | boolean;
                  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;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              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?: null | {
                collection_id: string;
                current_collection?: null | {
                    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?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                decimals?: any;
                description: string;
                is_fungible_v2?: null | boolean;
                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;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            token_data_id: string;
            token_properties_mutated_v1?: any;
            token_standard: string;
        }>

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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); +
    + +
  • Fetches all subdomain names for a specified account.

    +

    Parameters

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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); +
    + +
  • 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); +
    + +
  • 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

    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

    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 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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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); +
    + +
  • Queries all fungible asset balances.

    +

    Parameters

    Returns Promise<{
        amount?: any;
        asset_type?: null | string;
        is_frozen: boolean;
        is_primary?: null | boolean;
        last_transaction_timestamp?: any;
        last_transaction_version?: any;
        owner_address: string;
        storage_id: string;
        token_standard?: null | 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 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); +
    + +
  • Retrieves the activity data for a specified digital asset using its address.

    +

    Parameters

    • args: {
          digitalAssetAddress: AccountAddressInput;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              after_value?: null | string;
              before_value?: null | string;
              entry_function_id_str?: null | string;
              event_account_address: string;
              event_index: any;
              from_address?: null | string;
              is_fungible_v2?: null | boolean;
              property_version_v1: any;
              to_address?: null | string;
              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?: null | string;
            before_value?: null | string;
            entry_function_id_str?: null | string;
            event_account_address: string;
            event_index: any;
            from_address?: null | string;
            is_fungible_v2?: null | boolean;
            property_version_v1: any;
            to_address?: null | string;
            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?: null | string;
        before_value?: null | string;
        entry_function_id_str?: null | string;
        event_account_address: string;
        event_index: any;
        from_address?: null | string;
        is_fungible_v2?: null | boolean;
        property_version_v1: any;
        to_address?: null | string;
        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?: null | {
            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?: null | boolean;
            mutable_uri?: null | boolean;
            table_handle_v1?: null | string;
            token_standard: string;
            total_minted_v2?: any;
            uri: string;
        };
        decimals?: any;
        description: string;
        is_fungible_v2?: null | boolean;
        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); +
    + +
  • Fetches all subdomain names for a given domain, excluding the domain itself.

    +

    Parameters

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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 all events from the Aptos blockchain. +An optional where clause can be provided to filter the results based on specific criteria.

    +

    Parameters

    • Optionalargs: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              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;
          }> & WhereArg<EventsBoolExp>;
      }

      Optional parameters for the query.

      +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • Optionaloptions?: PaginationArgs & OrderByArg<{
            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;
        }> & WhereArg<EventsBoolExp>

        Optional pagination and filtering options.

        +

    Returns Promise<{
        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;
    }[]>

    GetEventsQuery response type containing the events.

    +
    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 all events
    const events = await aptos.getEvents();

    // Retrieve events with filtering by account address
    const whereCondition = {
    account_address: { _eq: "0x123" }, // replace with a real account address
    };
    const filteredEvents = await aptos.getEvents({
    options: { where: whereCondition },
    });

    console.log(events);
    console.log(filteredEvents);
    }
    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<undefined | number>

    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); +
    + +
  • Queries all fungible asset activities and returns a list of their metadata.

    +

    Parameters

    Returns Promise<{
        amount?: any;
        asset_type?: null | string;
        block_height: any;
        entry_function_id_str?: null | string;
        event_index: any;
        gas_fee_payer_address?: null | string;
        is_frozen?: null | boolean;
        is_gas_fee: boolean;
        is_transaction_success: boolean;
        owner_address?: null | string;
        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?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        maximum_v2?: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        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?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        maximum_v2?: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        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?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        maximum_v2?: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • Retrieve module events based on a specified event type. +This function allows you to query for events that are associated with a particular module event type in the Aptos blockchain.

    +

    Parameters

    • args: {
          eventType: `${string}::${string}::${string}`;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              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;
          }>;
      }

      The arguments for retrieving module events.

      +
      • eventType: `${string}::${string}::${string}`

        The event type to filter the results.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • Optionaloptions?: PaginationArgs & OrderByArg<{
            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;
        }>

        Optional pagination and ordering parameters for the event results.

        +

    Returns Promise<{
        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;
    }[]>

    Promise - A promise that resolves to the retrieved events.

    +
    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 module events for a specific event type
    const events = await aptos.getModuleEventsByEventType({
    eventType: "0x1::transaction_fee::FeeStatement", // specify the event type
    minimumLedgerVersion: 1, // optional: specify minimum ledger version if needed
    });

    console.log(events); // log the retrieved events
    }
    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<undefined | {
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }>

    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); +
    + +
  • Queries the current number of delegators in a specified pool. Throws an error if the pool is not found.

    +

    Parameters

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

      The parameters for the query.

      +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • poolAddress: AccountAddressInput

        The address of the pool to query.

        +

    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?: null | string;
          }>;
      }

      Optional parameters for the query.

      +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

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

        Optional ordering options for the response.

        +

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

    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); +
    + +
  • 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); +
    + +
  • Retrieves the digital assets owned by a specified address.

    +

    Parameters

    • args: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              amount: any;
              current_token_data?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      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?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  decimals?: any;
                  description: string;
                  is_fungible_v2?: null | boolean;
                  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;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              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?: null | {
                collection_id: string;
                current_collection?: null | {
                    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?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                decimals?: any;
                description: string;
                is_fungible_v2?: null | boolean;
                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;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            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?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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); +
    + +
  • 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<undefined | AccountAddress>

    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); +
    + +
  • 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>

    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); +
    + +
  • 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<undefined | string>

    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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • Returns a signing message for a transaction, allowing a user to sign it using their preferred method before submission to the network.

    +

    Parameters

    • args: {
          transaction: AnyRawTransaction;
      }

      The arguments for obtaining the signing message.

      +

    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 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); +
    + +
  • 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<undefined | AccountAddress>

    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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • 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 MyQuery {
    ledger_infos {
    chain_id
    }
    }`
    });

    console.log(topUserTransactions);
    }
    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<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() {
    // Registering a subdomain name assuming def.apt is already registered and belongs to the sender alice.
    const txn = 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:", txn);
    }
    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); +
    + +
  • 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: Account;
          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: Account

        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<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() {
    // Renew the domain "test" for one year
    const transaction = await aptos.renewDomain({
    sender: Account.generate(), // replace with a real account
    name: "test"
    });

    console.log(transaction);
    }
    runExample().catch(console.error); +
    + +
  • Rotate an account's authentication key. After rotation, only the new private key can be used to sign transactions for the account. +Note: Only legacy Ed25519 scheme is supported for now. +More info: https://aptos.dev/guides/account-management/key-rotation/

    +

    Parameters

    • args: {
          fromAccount: Account;
          toNewPrivateKey: PrivateKey;
      }

      The arguments for rotating the auth key.

      +
      • fromAccount: Account

        The account to rotate the auth key for.

        +
      • toNewPrivateKey: PrivateKey

        The new private key to rotate to.

        +

    Returns Promise<TransactionResponse>

    PendingTransactionResponse

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

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

    async function runExample() {
    // Rotate the authentication key for an account
    const response = await aptos.rotateAuthKey({
    // replace with a real account
    fromAccount: Account.generate(),
    // replace with a real private key
    toNewPrivateKey: new PrivateKey("0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"),
    });

    console.log(response);
    }
    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); +
    + +
  • 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<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() {
    // Set the primary name for the sender account
    const sender = Account.generate(); // replace with a real account
    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<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() {
    // 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

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

    const targetAddress = await aptos.getTargetAddress({ name: "test.aptos" });
    console.log(targetAddress); // Should log the address set for "test.aptos"
    }
    runExample().catch(console.error); +
    + +
  • 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 as the fee payer to chain given an authenticator by the sender of the transaction.

    +

    Parameters

    Returns Promise<PendingTransactionResponse>

    PendingTransactionResponse

    +
    const transaction = await aptos.transaction.build.simple({sender: alice.accountAddress, feePayer: true ...})
    const senderAuthenticator = alice.signTransactionWithAuthenticator(transaction)
    const pendingTransaction = await aptos.signAndSubmitAsFeePayer({
    senderAuthenticator,
    feePayer: bob,
    transaction,
    }) +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • 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); +
    + +
  • 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.

    +
  • Queries for a Move view function with JSON, this provides compatability with the old aptos package

    +

    Type Parameters

    Parameters

    Returns Promise<T>

    an array of Move values

    +
    const data = await aptos.view({
    payload: {
    function: "0x1::coin::balance",
    typeArguments: ["0x1::aptos_coin::AptosCoin"],
    functionArguments: [accountAddress.toString()],
    }
    }) +
    + +
  • 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); +
    + +

Properties

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

The configuration settings for the Aptos client.

+
digitalAsset: DigitalAsset
event: Event
faucet: Faucet
fungibleAsset: FungibleAsset
general: General
keyless: Keyless
object: AptosObject
staking: Staking
table: Table
transaction: Transaction
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AptosApiError.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AptosApiError.html new file mode 100644 index 000000000..02ee37b49 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AptosApiError.html @@ -0,0 +1,23 @@ +AptosApiError | @aptos-labs/ts-sdk - v1.33.1

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 (view full)

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void

Properties

data: any
message: string
name: string
request: AptosRequest
stack?: string
status: number
statusText: string
url: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

+
stackTraceLimit: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AptosConfig.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AptosConfig.html new file mode 100644 index 000000000..d6d052a04 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AptosConfig.html @@ -0,0 +1,55 @@ +AptosConfig | @aptos-labs/ts-sdk - v1.33.1

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); +
+ +

Constructors

  • 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.

      +

    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); +
    + +

Methods

  • 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}`); +
    + +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/AuthenticationKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AuthenticationKey.html new file mode 100644 index 000000000..444109228 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/AuthenticationKey.html @@ -0,0 +1,64 @@ +AuthenticationKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • 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.

    +

Methods

  • 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.

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

    +

    Returns string

    the hex formatas a string prefixed by 0x.

    +
  • 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.

    +

Properties

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.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Bool.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Bool.html new file mode 100644 index 000000000..670abe911 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Bool.html @@ -0,0 +1,39 @@ +Bool | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/ChainId.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ChainId.html new file mode 100644 index 000000000..500508881 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ChainId.html @@ -0,0 +1,28 @@ +ChainId | @aptos-labs/ts-sdk - v1.33.1

Represents a ChainId that can be serialized and deserialized.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • Serializes the current object using the provided serializer. +This function helps in converting the object into a format suitable for transmission or storage.

    +

    Parameters

    • serializer: Serializer

      The serializer instance used to perform the serialization.

      +

    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.

    +
  • Deserializes a ChainId from the provided deserializer. +This function allows you to reconstruct a ChainId object from serialized data.

    +

    Parameters

    • deserializer: Deserializer

      The deserializer instance used to read the serialized data.

      +

    Returns ChainId

Properties

chainId: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Deserializer.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Deserializer.html new file mode 100644 index 000000000..b90692913 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Deserializer.html @@ -0,0 +1,101 @@ +Deserializer | @aptos-labs/ts-sdk - v1.33.1

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.

+

Constructors

  • 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

Methods

  • 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.

    +
  • Deserializes an array of bytes of a specified length.

    +

    Parameters

    • len: number

      The number of bytes to read from the source.

      +

    Returns Uint8Array

  • 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 undefined | string

    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] +
    + +
  • Parameters

    • type: "bytes"

    Returns undefined | Uint8Array

  • Parameters

    • type: "fixedBytes"
    • len: number

    Returns undefined | Uint8Array

  • Type Parameters

    • T

    Parameters

    Returns undefined | T

  • Returns undefined | string

    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"); +
    + +
  • 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.

    +
  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519Account.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519Account.html new file mode 100644 index 000000000..89b825258 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519Account.html @@ -0,0 +1,46 @@ +Ed25519Account | @aptos-labs/ts-sdk - v1.33.1

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

Constructors

Methods

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519PrivateKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519PrivateKey.html new file mode 100644 index 000000000..61482b1bf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519PrivateKey.html @@ -0,0 +1,61 @@ +Ed25519PrivateKey | @aptos-labs/ts-sdk - v1.33.1

Represents the private key of an Ed25519 key pair.

+

Hierarchy (view full)

Implements

Constructors

Methods

  • 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.

    +
  • Get the private key as a hex string with the 0x prefix.

    +

    Returns string

    string representation of the private key.

    +
  • 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.

    +
  • Determines if the provided private key is an instance of Ed25519PrivateKey.

    +

    Parameters

    Returns privateKey is Ed25519PrivateKey

    A boolean indicating whether the private key is an Ed25519PrivateKey.

    +

    Use instanceof Ed25519PrivateKey instead.

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519PublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519PublicKey.html new file mode 100644 index 000000000..154105411 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519PublicKey.html @@ -0,0 +1,56 @@ +Ed25519PublicKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • Creates an instance of the Ed25519Signature class from a hex input. +This constructor validates the length of the signature to ensure it meets the required specifications.

    +

    Parameters

    • hexInput: HexInput

      The hex input representing the Ed25519 signature.

      +

    Returns Ed25519PublicKey

    Error if the signature length is not equal to Ed25519Signature.LENGTH.

    +

Methods

  • 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.

    +
  • 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

  • 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.

    +
  • Determine if the provided public key is an instance of Ed25519PublicKey.

    +

    Parameters

    Returns publicKey is Ed25519PublicKey

    True if the public key is an instance of Ed25519PublicKey, otherwise false.

    +

    use instanceof Ed25519PublicKey instead.

    +

Properties

LENGTH: number = 32

Length of an Ed25519 public key

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519Signature.html new file mode 100644 index 000000000..de5c629c0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Ed25519Signature.html @@ -0,0 +1,23 @@ +Ed25519Signature | @aptos-labs/ts-sdk - v1.33.1

Represents a signature of a message signed using an Ed25519 private key.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +

Properties

LENGTH = 64

Length of an Ed25519 signature, which is 64 bytes.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/EntryFunction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EntryFunction.html new file mode 100644 index 000000000..a8c384626 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EntryFunction.html @@ -0,0 +1,53 @@ +EntryFunction | @aptos-labs/ts-sdk - v1.33.1

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.

+

Constructors

  • 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)
    +
    + +

Methods

  • 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.

    +

Properties

function_name: Identifier
module_name: ModuleId
type_args: TypeTag[]
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/EntryFunctionBytes.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EntryFunctionBytes.html new file mode 100644 index 000000000..8f4ad8b0b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EntryFunctionBytes.html @@ -0,0 +1,39 @@ +EntryFunctionBytes | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Methods

  • 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

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

    +

    Returns string

    the hex formatas a string prefixed by 0x.

    +
  • 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.

    +

Properties

value: FixedBytes
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralCertificate.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralCertificate.html new file mode 100644 index 000000000..9b9bbda2c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralCertificate.html @@ -0,0 +1,24 @@ +EphemeralCertificate | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

signature: Signature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralKeyPair.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralKeyPair.html new file mode 100644 index 000000000..77e662da0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralKeyPair.html @@ -0,0 +1,68 @@ +EphemeralKeyPair | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • 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

Methods

  • 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.

    +
  • 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.

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

    +

    Returns string

    the hex formatas a string prefixed by 0x.

    +
  • 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.

    +

Properties

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.

+
BLINDER_LENGTH: number = 31
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralPublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralPublicKey.html new file mode 100644 index 000000000..0a2b6391a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralPublicKey.html @@ -0,0 +1,47 @@ +EphemeralPublicKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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.

    +

Properties

publicKey: PublicKey

The public key itself

+
variant: Ed25519

An enum indicating the scheme of the ephemeral public key

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralSignature.html new file mode 100644 index 000000000..a7699a41a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/EphemeralSignature.html @@ -0,0 +1,29 @@ +EphemeralSignature | @aptos-labs/ts-sdk - v1.33.1

Class EphemeralSignature

Represents ephemeral signatures used in Aptos Keyless accounts.

+

These signatures are utilized within the KeylessSignature framework.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • Deserializes an ephemeral signature from a hexadecimal input. +This function allows you to convert a hexadecimal representation of an ephemeral signature into its deserialized form for +further processing.

    +

    Parameters

    • hexInput: HexInput

      The hexadecimal input representing the ephemeral signature.

      +

    Returns EphemeralSignature

Properties

signature: Signature

The signature signed by the private key of an EphemeralKeyPair

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/FederatedKeylessAccount.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FederatedKeylessAccount.html new file mode 100644 index 000000000..797ccf072 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FederatedKeylessAccount.html @@ -0,0 +1,115 @@ +FederatedKeylessAccount | @aptos-labs/ts-sdk - v1.33.1

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 full)

Methods

  • 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.

    +
  • 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

  • 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 FederatedKeylessAccount

    A KeylessAccount instance created from the deserialized data.

    +

Properties

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: undefined | ZeroKnowledgeSig

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

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.

+
verificationKeyHash?: Uint8Array

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-1.33.1/classes/FederatedKeylessPublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FederatedKeylessPublicKey.html new file mode 100644 index 000000000..ba27992f0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FederatedKeylessPublicKey.html @@ -0,0 +1,46 @@ +FederatedKeylessPublicKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

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.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/FeePayerRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FeePayerRawTransaction.html new file mode 100644 index 000000000..5637270d2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FeePayerRawTransaction.html @@ -0,0 +1,28 @@ +FeePayerRawTransaction | @aptos-labs/ts-sdk - v1.33.1

Class FeePayerRawTransaction

Represents a Fee Payer Transaction that can be serialized and deserialized.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/FixedBytes.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FixedBytes.html new file mode 100644 index 000000000..ab8e94ede --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/FixedBytes.html @@ -0,0 +1,50 @@ +FixedBytes | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

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

    +

    Returns string

    the hex formatas a string prefixed by 0x.

    +
  • 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

Properties

value: Uint8Array
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Groth16VerificationKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Groth16VerificationKey.html new file mode 100644 index 000000000..71a956074 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Groth16VerificationKey.html @@ -0,0 +1,22 @@ +Groth16VerificationKey | @aptos-labs/ts-sdk - v1.33.1

Class Groth16VerificationKey

Represents the verification key stored on-chain used to verify Groth16 proofs.

+

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

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Groth16Zkp.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Groth16Zkp.html new file mode 100644 index 000000000..0df02cfb4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Groth16Zkp.html @@ -0,0 +1,26 @@ +Groth16Zkp | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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.

    +

Properties

The bytes of G1 proof point a

+

The bytes of G2 proof point b

+

The bytes of G1 proof point c

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Hex.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Hex.html new file mode 100644 index 000000000..51b247b42 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Hex.html @@ -0,0 +1,71 @@ +Hex | @aptos-labs/ts-sdk - v1.33.1

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()
  • +
+

Constructors

  • Create a new Hex instance from a Uint8Array.

    +

    Parameters

    • data: Uint8Array

      The Uint8Array containing the data to initialize the Hex instance.

      +

    Returns Hex

Methods

  • 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.

    +
  • 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.

    +
  • 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.
    • +
    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Identifier.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Identifier.html new file mode 100644 index 000000000..6e050584e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Identifier.html @@ -0,0 +1,29 @@ +Identifier | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/KeylessAccount.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessAccount.html new file mode 100644 index 000000000..0ec98889d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessAccount.html @@ -0,0 +1,114 @@ +KeylessAccount | @aptos-labs/ts-sdk - v1.33.1

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 full)

Methods

  • 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.

    +
  • 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

  • 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.

    +

Properties

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: undefined | ZeroKnowledgeSig

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

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.

+
verificationKeyHash?: Uint8Array

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-1.33.1/classes/KeylessConfiguration.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessConfiguration.html new file mode 100644 index 000000000..9fc5fc16b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessConfiguration.html @@ -0,0 +1,10 @@ +KeylessConfiguration | @aptos-labs/ts-sdk - v1.33.1

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.

+

Constructors

Methods

Properties

Constructors

Methods

Properties

maxExpHorizonSecs: number

The maximum lifespan of an ephemeral key pair. This is configured on chain.

+
verificationKey: Groth16VerificationKey

The verification key used to verify Groth16 proofs on chain

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessError.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessError.html new file mode 100644 index 000000000..2cbe84176 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessError.html @@ -0,0 +1,21 @@ +KeylessError | @aptos-labs/ts-sdk - v1.33.1

Hierarchy (view full)

Methods

  • Create .stack property on a target object

    +

    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

details?: string
innerError?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

+
stackTraceLimit: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessPublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessPublicKey.html new file mode 100644 index 000000000..788276714 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessPublicKey.html @@ -0,0 +1,78 @@ +KeylessPublicKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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

    +
  • Deserializes a ZeroKnowledgeSig object from the provided deserializer. +This function allows you to reconstruct a ZeroKnowledgeSig instance from its serialized form.

    +

    Parameters

    • deserializer: Deserializer

      The deserializer instance used to read the serialized data.

      +

    Returns KeylessPublicKey

    A new instance of ZeroKnowledgeSig.

    +
  • 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.

    +
  • Loads a KeylessPublicKey instance from the provided deserializer. +This function is used to deserialize the necessary components to create a KeylessPublicKey.

    +

    Parameters

    • deserializer: Deserializer

      The deserializer used to extract the string and byte data.

      +

    Returns KeylessPublicKey

    A new instance of KeylessPublicKey.

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessSignature.html new file mode 100644 index 000000000..68dffc899 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/KeylessSignature.html @@ -0,0 +1,36 @@ +KeylessSignature | @aptos-labs/ts-sdk - v1.33.1

Represents a signature of a message signed via a Keyless Account, utilizing proofs or a JWT token for authentication.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • Get the kid of the JWT used to derive the Keyless Account used to sign.

    +

    Returns string

    the kid as a string

    +

Properties

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.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/ModuleId.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ModuleId.html new file mode 100644 index 000000000..b5a25f69f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ModuleId.html @@ -0,0 +1,36 @@ +ModuleId | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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

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

    +

    Returns string

    the hex formatas a string prefixed by 0x.

    +
  • 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.

    +

Properties

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveJWK.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveJWK.html new file mode 100644 index 000000000..3ab3035a8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveJWK.html @@ -0,0 +1,27 @@ +MoveJWK | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/MoveOption.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveOption.html new file mode 100644 index 000000000..af054b8a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveOption.html @@ -0,0 +1,104 @@ +MoveOption | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

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

    +

    Returns string

    the hex formatas a string prefixed by 0x.

    +
  • 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: null | boolean

      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 string or undefined.

    +

    Parameters

    • Optionalvalue: null | string

      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: null | AnyNumber

      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: null | number

      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: null | AnyNumber

      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: null | number

      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: null | AnyNumber

      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: null | number

      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; +
    + +

Properties

value?: T
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveString.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveString.html new file mode 100644 index 000000000..b988e8111 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveString.html @@ -0,0 +1,34 @@ +MoveString | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/MoveVector.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveVector.html new file mode 100644 index 000000000..fd79d6f50 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MoveVector.html @@ -0,0 +1,128 @@ +MoveVector | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

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

    +

    Returns string

    the hex formatas a string prefixed by 0x.

    +
  • 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 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]);
    +
    + +

Properties

values: T[]
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiAgentRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiAgentRawTransaction.html new file mode 100644 index 000000000..f4a18e220 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiAgentRawTransaction.html @@ -0,0 +1,31 @@ +MultiAgentRawTransaction | @aptos-labs/ts-sdk - v1.33.1

Class MultiAgentRawTransaction

Represents a multi-agent transaction that can be serialized and deserialized.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • Deserializes a Fee Payer Raw Transaction from the provided deserializer. +This function allows you to reconstruct a Fee Payer Raw Transaction object, which includes the raw transaction data, +secondary signer addresses, and the fee payer address.

    +

    Parameters

    • deserializer: Deserializer

      The deserializer used to read the raw transaction data.

      +

    Returns MultiAgentRawTransaction

    A FeePayerRawTransaction object constructed from the deserialized data.

    +

Properties

The raw transaction

+
secondary_signer_addresses: AccountAddress[]

The secondary signers on this transaction

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiAgentTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiAgentTransaction.html new file mode 100644 index 000000000..775ff10ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiAgentTransaction.html @@ -0,0 +1,38 @@ +MultiAgentTransaction | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • Serializes the transaction data, including the 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

  • 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-1.33.1/classes/MultiEd25519PublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiEd25519PublicKey.html new file mode 100644 index 000000000..d24e15e7b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiEd25519PublicKey.html @@ -0,0 +1,58 @@ +MultiEd25519PublicKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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

    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.

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiEd25519Signature.html new file mode 100644 index 000000000..4974b27fd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiEd25519Signature.html @@ -0,0 +1,53 @@ +MultiEd25519Signature | @aptos-labs/ts-sdk - v1.33.1

Class MultiEd25519Signature

Represents the signature of a K-of-N Ed25519 multi-sig transaction.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • 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

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKey.html new file mode 100644 index 000000000..9bf90f14d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKey.html @@ -0,0 +1,62 @@ +MultiKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • 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.

      +
      • publicKeys: PublicKey[]
      • signaturesRequired: number

    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.

    +

Methods

  • 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.

    +
  • 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.

    +
  • 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

  • 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

Properties

publicKeys: AnyPublicKey[]

List of any public keys

+
signaturesRequired: number

The minimum number of valid signatures required, for the number of public keys specified

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKeyAccount.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKeyAccount.html new file mode 100644 index 000000000..fdf047c67 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKeyAccount.html @@ -0,0 +1,65 @@ +MultiKeyAccount | @aptos-labs/ts-sdk - v1.33.1

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

Constructors

  • Constructs a MultiKeyAccount instance, which requires multiple signatures for transactions.

    +

    Parameters

    • args: {
          address?: AccountAddressInput;
          multiKey: MultiKey;
          signers: Account[];
      }

      The arguments for creating a MultiKeyAccount.

      +
      • Optionaladdress?: AccountAddressInput

        An optional account address input. If not provided, the derived address from the public key will be used.

        +
      • multiKey: MultiKey

        The multikey of the account consisting of N public keys and a number M representing the required signatures.

        +
      • signers: Account[]

        An array of M signers that will be used to sign the transaction.

        +

    Returns MultiKeyAccount

Methods

  • 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

    Returns 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.

    +
  • Static constructor to create a MultiKeyAccount using the provided public keys and signers.

    +

    Parameters

    • args: {
          publicKeys: PublicKey[];
          signaturesRequired: number;
          signers: Account[];
      }

      The arguments for creating a MultiKeyAccount.

      +
      • publicKeys: PublicKey[]

        The N public keys of the MultiKeyAccount.

        +
      • signaturesRequired: number

        The number of signatures required to authorize a transaction.

        +
      • signers: Account[]

        An array of M signers that will be used to sign the transaction.

        +

    Returns MultiKeyAccount

    MultiKeyAccount - The newly created MultiKeyAccount.

    +

Properties

accountAddress: AccountAddress

Account address associated with the account

+
publicKey: MultiKey

Public key associated with the account

+
signaturesBitmap: Uint8Array
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 or greater +than this.publicKey.signaturesRequired

+
signingScheme: SigningScheme

Signing scheme used to sign transactions

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKeySignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKeySignature.html new file mode 100644 index 000000000..bd4f8ccbf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiKeySignature.html @@ -0,0 +1,50 @@ +MultiKeySignature | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiSig.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiSig.html new file mode 100644 index 000000000..7fd134bc2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiSig.html @@ -0,0 +1,13 @@ +MultiSig | @aptos-labs/ts-sdk - v1.33.1

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.

+

Constructors

Methods

Properties

multisig_address: AccountAddress
transaction_payload?: MultiSigTransactionPayload
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiSigTransactionPayload.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiSigTransactionPayload.html new file mode 100644 index 000000000..c08fb31b8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/MultiSigTransactionPayload.html @@ -0,0 +1,27 @@ +MultiSigTransactionPayload | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/ParsingError.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ParsingError.html new file mode 100644 index 000000000..ba123c9aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ParsingError.html @@ -0,0 +1,19 @@ +ParsingError | @aptos-labs/ts-sdk - v1.33.1

Class ParsingError<T>

This error is used to explain why parsing failed.

+

Type Parameters

  • T

Hierarchy (view full)

Constructors

  • 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>

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void

Properties

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.

+
message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

+
stackTraceLimit: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/PrivateKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/PrivateKey.html new file mode 100644 index 000000000..95b490d09 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/PrivateKey.html @@ -0,0 +1,23 @@ +PrivateKey | @aptos-labs/ts-sdk - v1.33.1

Implemented by

Constructors

Methods

Properties

AIP80_PREFIXES: {
    ed25519: string;
    secp256k1: 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-1.33.1/classes/PublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/PublicKey.html new file mode 100644 index 000000000..3f3978560 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/PublicKey.html @@ -0,0 +1,24 @@ +PublicKey | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/RawTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/RawTransaction.html new file mode 100644 index 000000000..231fa30e6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/RawTransaction.html @@ -0,0 +1,47 @@ +RawTransaction | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • 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

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/RawTransactionWithData.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/RawTransactionWithData.html new file mode 100644 index 000000000..ef2747cf5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/RawTransactionWithData.html @@ -0,0 +1,21 @@ +RawTransactionWithData | @aptos-labs/ts-sdk - v1.33.1

Class RawTransactionWithDataAbstract

Represents a raw transaction with associated data that can be serialized and deserialized.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/RotationProofChallenge.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/RotationProofChallenge.html new file mode 100644 index 000000000..6bf28cba6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/RotationProofChallenge.html @@ -0,0 +1,35 @@ +RotationProofChallenge | @aptos-labs/ts-sdk - v1.33.1

Class RotationProofChallenge

Represents a challenge required for the account owner to sign in order to rotate the authentication key.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/Script.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Script.html new file mode 100644 index 000000000..459a33fe8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Script.html @@ -0,0 +1,24 @@ +Script | @aptos-labs/ts-sdk - v1.33.1

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.

+

Constructors

Methods

Properties

Constructors

  • 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)
    +
    + +

Methods

Properties

The arguments that the bytecode function requires.

+
bytecode: Uint8Array

The move module bytecode

+
type_args: TypeTag[]

The type arguments that the bytecode function requires.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1PrivateKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1PrivateKey.html new file mode 100644 index 000000000..7db63f294 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1PrivateKey.html @@ -0,0 +1,56 @@ +Secp256k1PrivateKey | @aptos-labs/ts-sdk - v1.33.1

Class Secp256k1PrivateKey

Represents a Secp256k1 ECDSA private key, providing functionality to create, sign messages, +derive public keys, and serialize/deserialize the key.

+

Hierarchy (view full)

Implements

Constructors

Methods

  • 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.

    +
  • Get the private key as a hex string with the 0x prefix.

    +

    Returns string

    string representation of the private key.

    +
  • 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.

    +

Properties

LENGTH: number = 32

Length of Secp256k1 ecdsa private key

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1PublicKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1PublicKey.html new file mode 100644 index 000000000..bb315bc4f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1PublicKey.html @@ -0,0 +1,49 @@ +Secp256k1PublicKey | @aptos-labs/ts-sdk - v1.33.1

Class Secp256k1PublicKey

Represents a Secp256k1 ECDSA public key.

+

Hierarchy (view full)

Constructors

  • Create a new PublicKey instance from a HexInput, which can be a string or Uint8Array. +This constructor validates the length of the provided signature data.

    +

    Parameters

    • hexInput: HexInput

      A HexInput (string or Uint8Array) representing the signature data.

      +

    Returns Secp256k1PublicKey

    Error if the length of the signature data is not equal to Secp256k1Signature.LENGTH.

    +

Methods

  • 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.

    +
  • 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

  • Verifies a Secp256k1 signature against the public key.

    +

    This function checks the validity of a signature for a given message, ensuring that the signature is canonical as a malleability check.

    +

    Parameters

    Returns boolean

  • 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.

    +

Properties

COMPRESSED_LENGTH: number = 33
LENGTH: number = 65

The length of the Secp256k1 public key in bytes.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1Signature.html new file mode 100644 index 000000000..3bc383708 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Secp256k1Signature.html @@ -0,0 +1,25 @@ +Secp256k1Signature | @aptos-labs/ts-sdk - v1.33.1

Class Secp256k1Signature

Represents a signature of a message signed using a Secp256k1 ECDSA private key.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +

Properties

LENGTH = 64

Secp256k1 ecdsa signatures are 256-bit or 64 bytes

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Serializable.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Serializable.html new file mode 100644 index 000000000..dd94f0d4c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Serializable.html @@ -0,0 +1,20 @@ +Serializable | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/Serialized.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Serialized.html new file mode 100644 index 000000000..43d3c8094 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Serialized.html @@ -0,0 +1,37 @@ +Serialized | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/Serializer.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Serializer.html new file mode 100644 index 000000000..a7514f131 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Serializer.html @@ -0,0 +1,101 @@ +Serializer | @aptos-labs/ts-sdk - v1.33.1

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.

+

Constructors

  • 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

Methods

  • Serializes a Serializable value, facilitating composable serialization.

    +

    Type Parameters

    Parameters

    • value: T

      The Serializable value to serialize.

      +

    Returns void

    the serializer instance

    +
  • 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 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.

    +

    Returns Uint8Array

    Uint8Array - The byte array representation of the buffer.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Signature.html new file mode 100644 index 000000000..2e98e85bd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/Signature.html @@ -0,0 +1,23 @@ +Signature | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/SignedTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/SignedTransaction.html new file mode 100644 index 000000000..7318a1ad9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/SignedTransaction.html @@ -0,0 +1,45 @@ +SignedTransaction | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • Serializes the raw transaction and its authenticator using the provided serializer. +This function is essential for preparing the transaction data for transmission or storage.

    +

    Parameters

    • serializer: Serializer

      The serializer instance used to serialize the transaction and authenticator.

      +

    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.

    +

Properties

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/SimpleTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/SimpleTransaction.html new file mode 100644 index 000000000..2455d98ea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/SimpleTransaction.html @@ -0,0 +1,36 @@ +SimpleTransaction | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • Serializes the transaction data using the provided serializer. +This function ensures that the raw transaction and fee payer address are properly serialized for further processing.

    +

    Parameters

    • serializer: Serializer

      The serializer instance used to serialize the transaction data.

      +

    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.

    +

Properties

feePayerAddress?: AccountAddress
rawTransaction: RawTransaction
secondarySignerAddresses: undefined
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/SingleKeyAccount.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/SingleKeyAccount.html new file mode 100644 index 000000000..78b63c968 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/SingleKeyAccount.html @@ -0,0 +1,50 @@ +SingleKeyAccount | @aptos-labs/ts-sdk - v1.33.1

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

Constructors

Methods

  • Derives an account from a randomly generated private key based on the specified signing scheme. +The default generation scheme is Ed25519, but it can also support Secp256k1Ecdsa.

    +

    Parameters

    Returns SingleKeyAccount

    An account with the generated private key based on the specified signing scheme.

    +

    Error if an unsupported signature scheme is provided.

    +

Properties

accountAddress: AccountAddress

Account address associated with the account

+
privateKey: PrivateKey

Private key associated with the account

+
publicKey: AnyPublicKey

Public key associated with the account

+
signingScheme: SingleKey = SigningScheme.SingleKey

Signing scheme used to sign transactions

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/StructTag.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/StructTag.html new file mode 100644 index 000000000..824ae463c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/StructTag.html @@ -0,0 +1,29 @@ +StructTag | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/TransactionAndProof.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAndProof.html new file mode 100644 index 000000000..97d2f3a65 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAndProof.html @@ -0,0 +1,31 @@ +TransactionAndProof | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • Hashes the bcs serialized from of the class. This is the typescript corollary to the BCSCryptoHash macro in aptos-core.

    +

    Returns Uint8Array

    Uint8Array

    +
  • 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.

    +

Properties

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.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticator.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticator.html new file mode 100644 index 000000000..561287655 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticator.html @@ -0,0 +1,28 @@ +TransactionAuthenticator | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/TransactionAuthenticatorEd25519.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorEd25519.html new file mode 100644 index 000000000..7649073fd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorEd25519.html @@ -0,0 +1,43 @@ +TransactionAuthenticatorEd25519 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

public_key: Ed25519PublicKey
signature: Ed25519Signature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorFeePayer.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorFeePayer.html new file mode 100644 index 000000000..62b571868 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorFeePayer.html @@ -0,0 +1,38 @@ +TransactionAuthenticatorFeePayer | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

fee_payer: {
    address: AccountAddress;
    authenticator: AccountAuthenticator;
}
secondary_signer_addresses: AccountAddress[]
secondary_signers: AccountAuthenticator[]
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorMultiAgent.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorMultiAgent.html new file mode 100644 index 000000000..267c89570 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorMultiAgent.html @@ -0,0 +1,35 @@ +TransactionAuthenticatorMultiAgent | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

secondary_signer_addresses: AccountAddress[]
secondary_signers: AccountAuthenticator[]
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorMultiEd25519.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorMultiEd25519.html new file mode 100644 index 000000000..7fbce97c4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorMultiEd25519.html @@ -0,0 +1,33 @@ +TransactionAuthenticatorMultiEd25519 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorSingleSender.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorSingleSender.html new file mode 100644 index 000000000..e246717b1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionAuthenticatorSingleSender.html @@ -0,0 +1,31 @@ +TransactionAuthenticatorSingleSender | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayload.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayload.html new file mode 100644 index 000000000..b53840538 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayload.html @@ -0,0 +1,26 @@ +TransactionPayload | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/TransactionPayloadEntryFunction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadEntryFunction.html new file mode 100644 index 000000000..c67c44929 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadEntryFunction.html @@ -0,0 +1,25 @@ +TransactionPayloadEntryFunction | @aptos-labs/ts-sdk - v1.33.1

Class TransactionPayloadEntryFunction

Represents a transaction payload entry function that can be serialized and deserialized.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +

Properties

entryFunction: EntryFunction
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadMultiSig.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadMultiSig.html new file mode 100644 index 000000000..2e1f04544 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadMultiSig.html @@ -0,0 +1,25 @@ +TransactionPayloadMultiSig | @aptos-labs/ts-sdk - v1.33.1

Class TransactionPayloadMultiSig

Represents a multi-signature transaction payload that can be serialized and deserialized.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +

Properties

multiSig: MultiSig
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadScript.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadScript.html new file mode 100644 index 000000000..18e8de10d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionPayloadScript.html @@ -0,0 +1,33 @@ +TransactionPayloadScript | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

script: Script
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionWorker.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionWorker.html new file mode 100644 index 000000000..037194079 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TransactionWorker.html @@ -0,0 +1,91 @@ +TransactionWorker | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • 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

Events

  • 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

  • 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<undefined | SimpleTransaction>

    A signed transaction object or undefined if the transaction queue is empty.

    +
  • Return the number of listeners listening to a given event.

    +

    Parameters

    Returns number

  • Remove all listeners, or those of the specified event.

    +

    Parameters

    • Optionalevent: keyof TransactionWorkerEvents

    Returns this

  • 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.

    +

Properties

account: Account
accountSequnceNumber: AccountSequenceNumber
aptosConfig: AptosConfig
executedTransactions: [string, bigint, any][] = []

transactions that have been committed to chain

+
outstandingTransactions: AsyncQueue<[Promise<PendingTransactionResponse>, bigint]> = ...

signed transactions waiting to be submitted

+
sentTransactions: [string, bigint, any][] = []

transactions that have been submitted to chain

+
started: boolean
taskQueue: AsyncQueue<(() => Promise<void>)> = ...

transactions payloads waiting to be generated and signed

+

TODO support entry function payload from ABI builder

+
prefixed: string | boolean
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTag.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTag.html new file mode 100644 index 000000000..1bd107ca1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTag.html @@ -0,0 +1,63 @@ +TypeTag | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • Deserializes a StructTag from the provided deserializer. +This function allows you to reconstruct a StructTag object from its serialized form.

    +

    Parameters

    • deserializer: Deserializer

      The deserializer instance used to read the serialized data.

      +

    Returns StructTag

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagAddress.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagAddress.html new file mode 100644 index 000000000..25ead4caf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagAddress.html @@ -0,0 +1,64 @@ +TypeTagAddress | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagBool.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagBool.html new file mode 100644 index 000000000..f95376b93 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagBool.html @@ -0,0 +1,70 @@ +TypeTagBool | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagGeneric.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagGeneric.html new file mode 100644 index 000000000..499aad771 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagGeneric.html @@ -0,0 +1,64 @@ +TypeTagGeneric | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

value: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagParserError.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagParserError.html new file mode 100644 index 000000000..1a4d1702b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagParserError.html @@ -0,0 +1,20 @@ +TypeTagParserError | @aptos-labs/ts-sdk - v1.33.1

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 (view full)

Constructors

  • Constructs an error indicating a failure to parse a type tag. +This error provides details about the specific type tag that could not be parsed and the reason for the failure.

    +

    Parameters

    • typeTagStr: string

      The string representation of the type tag that failed to parse.

      +
    • invalidReason: TypeTagParserErrorType

      The reason why the type tag is considered invalid.

      +

    Returns TypeTagParserError

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void

Properties

message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

+
stackTraceLimit: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagReference.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagReference.html new file mode 100644 index 000000000..552008fc0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagReference.html @@ -0,0 +1,68 @@ +TypeTagReference | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +

Properties

value: TypeTag

The TypeTag to reference.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagSigner.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagSigner.html new file mode 100644 index 000000000..10c87f5fe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagSigner.html @@ -0,0 +1,64 @@ +TypeTagSigner | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagStruct.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagStruct.html new file mode 100644 index 000000000..81938931e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagStruct.html @@ -0,0 +1,83 @@ +TypeTagStruct | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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 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.

    +
  • 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-1.33.1/classes/TypeTagU128.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU128.html new file mode 100644 index 000000000..169eb1615 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU128.html @@ -0,0 +1,63 @@ +TypeTagU128 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU16.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU16.html new file mode 100644 index 000000000..823147dca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU16.html @@ -0,0 +1,63 @@ +TypeTagU16 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU256.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU256.html new file mode 100644 index 000000000..f80ccd236 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU256.html @@ -0,0 +1,63 @@ +TypeTagU256 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU32.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU32.html new file mode 100644 index 000000000..079ada630 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU32.html @@ -0,0 +1,64 @@ +TypeTagU32 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU64.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU64.html new file mode 100644 index 000000000..29dfd5e6b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU64.html @@ -0,0 +1,63 @@ +TypeTagU64 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU8.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU8.html new file mode 100644 index 000000000..64705c58c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagU8.html @@ -0,0 +1,64 @@ +TypeTagU8 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagVector.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagVector.html new file mode 100644 index 000000000..9ee26322b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/TypeTagVector.html @@ -0,0 +1,68 @@ +TypeTagVector | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/U128.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U128.html new file mode 100644 index 000000000..b15578f53 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U128.html @@ -0,0 +1,33 @@ +U128 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/U16.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U16.html new file mode 100644 index 000000000..3d79a7cba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U16.html @@ -0,0 +1,33 @@ +U16 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/U256.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U256.html new file mode 100644 index 000000000..65a6b9050 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U256.html @@ -0,0 +1,33 @@ +U256 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/U32.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U32.html new file mode 100644 index 000000000..e3c50ba46 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U32.html @@ -0,0 +1,32 @@ +U32 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/U64.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U64.html new file mode 100644 index 000000000..16fcd8c17 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U64.html @@ -0,0 +1,34 @@ +U64 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/U8.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U8.html new file mode 100644 index 000000000..d9afedc6a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/U8.html @@ -0,0 +1,32 @@ +U8 | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implements

Constructors

Methods

  • 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.

    +
  • 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

  • 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-1.33.1/classes/ZeroKnowledgeSig.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ZeroKnowledgeSig.html new file mode 100644 index 000000000..76c27d255 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ZeroKnowledgeSig.html @@ -0,0 +1,36 @@ +ZeroKnowledgeSig | @aptos-labs/ts-sdk - v1.33.1

Represents a zero-knowledge signature, encapsulating the proof and its associated metadata.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • 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.

    +

Properties

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/ZkProof.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ZkProof.html new file mode 100644 index 000000000..886ba22d5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/ZkProof.html @@ -0,0 +1,20 @@ +ZkProof | @aptos-labs/ts-sdk - v1.33.1

Represents a container for different types of zero-knowledge proofs.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/_internal_.ANS.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.ANS.html new file mode 100644 index 000000000..4557567da --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.ANS.html @@ -0,0 +1,124 @@ +ANS | @aptos-labs/ts-sdk - v1.33.1

A class to handle all ANS operations.

+

Hierarchy (view full)

Constructors

  • 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); +
    + +

Methods

  • Fetches all top-level domain names for a specified account.

    +

    Parameters

    Returns Promise<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }[]>

    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<undefined | number>

    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<undefined | {
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }>

    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<undefined | AccountAddress>

    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<undefined | string>

    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<undefined | AccountAddress>

    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<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() {
    // Registering a subdomain name assuming def.apt is already registered and belongs to the sender alice.
    const txn = 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:", txn);
    }
    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: Account;
          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: Account

        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<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() {
    // Renew the domain "test" for one year
    const transaction = 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<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() {
    // Set the primary name for the sender account
    const sender = Account.generate(); // replace with a real account
    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<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() {
    // 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

    await aptos.setTargetAddress({
    sender: sender,
    name: "test.aptos",
    address: 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-1.33.1/classes/_internal_.Account.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Account.html new file mode 100644 index 000000000..8abf39750 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Account.html @@ -0,0 +1,179 @@ +Account | @aptos-labs/ts-sdk - v1.33.1

A class to query all Account related queries on Aptos.

+

Hierarchy (view full)

Constructors

  • 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); +
    + +

Methods

  • 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: {
          privateKey: PrivateKey;
      }

      The arguments for deriving the account.

      +

    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); +
    + +
  • Retrieves the current amount of APT for a specified account.

    +

    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;
          minimumLedgerVersion?: AnyNumber;
      }

      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.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Not used anymore, here for backward compatibility +see https://github.com/aptos-labs/aptos-ts-sdk/pull/519, will be removed in the near future. +Optional ledger version to sync up to before querying.

        +

    Returns Promise<number>

    The current amount of the specified coin held 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() {
    // Query the account's coin amount for a specific coin type
    const accountCoinAmount = await aptos.getAccountCoinAmount({
    accountAddress: "0x1", // replace with a real account address
    coinType: "0x1::aptos_coin::AptosCoin" // specify the coin type
    });

    console.log(`Account coin amount: ${accountCoinAmount}`);
    }
    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?: null | string;
              is_frozen: boolean;
              is_primary?: null | boolean;
              last_transaction_timestamp?: any;
              last_transaction_version?: any;
              metadata?: null | {
                  asset_type: string;
                  creator_address: string;
                  decimals: number;
                  icon_uri?: null | string;
                  last_transaction_timestamp: any;
                  last_transaction_version: any;
                  name: string;
                  project_uri?: null | string;
                  supply_aggregator_table_handle_v1?: null | string;
                  supply_aggregator_table_key_v1?: null | string;
                  symbol: string;
                  token_standard: string;
              };
              owner_address: string;
              storage_id: string;
              token_standard?: null | 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?: null | string;
            is_frozen: boolean;
            is_primary?: null | boolean;
            last_transaction_timestamp?: any;
            last_transaction_version?: any;
            metadata?: null | {
                asset_type: string;
                creator_address: string;
                decimals: number;
                icon_uri?: null | string;
                last_transaction_timestamp: any;
                last_transaction_version: any;
                name: string;
                project_uri?: null | string;
                supply_aggregator_table_handle_v1?: null | string;
                supply_aggregator_table_key_v1?: null | string;
                symbol: string;
                token_standard: string;
            };
            owner_address: string;
            storage_id: string;
            token_standard?: null | string;
        }> & WhereArg<CurrentFungibleAssetBalancesBoolExp>

    Returns Promise<{
        amount?: any;
        asset_type?: null | string;
        is_frozen: boolean;
        is_primary?: null | boolean;
        last_transaction_timestamp?: any;
        last_transaction_version?: any;
        metadata?: null | {
            asset_type: string;
            creator_address: string;
            decimals: number;
            icon_uri?: null | string;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            name: string;
            project_uri?: null | string;
            supply_aggregator_table_handle_v1?: null | string;
            supply_aggregator_table_key_v1?: null | string;
            symbol: string;
            token_standard: string;
        };
        owner_address: string;
        storage_id: string;
        token_standard?: null | 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?: null | string;
              collection_name?: null | string;
              collection_uri?: null | string;
              creator_address?: null | string;
              current_collection?: null | {
                  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?: null | boolean;
                  mutable_uri?: null | boolean;
                  table_handle_v1?: null | string;
                  token_standard: string;
                  total_minted_v2?: any;
                  uri: string;
              };
              distinct_tokens?: any;
              last_transaction_version?: any;
              owner_address?: null | string;
              single_token_uri?: null | string;
          }>;
      }
      • 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?: null | string;
            collection_name?: null | string;
            collection_uri?: null | string;
            creator_address?: null | string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            distinct_tokens?: any;
            last_transaction_version?: any;
            owner_address?: null | string;
            single_token_uri?: null | string;
        }>

    Returns Promise<{
        collection_id?: null | string;
        collection_name?: null | string;
        collection_uri?: null | string;
        creator_address?: null | string;
        current_collection?: null | {
            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?: null | boolean;
            mutable_uri?: null | boolean;
            table_handle_v1?: null | string;
            token_standard: string;
            total_minted_v2?: any;
            uri: string;
        };
        distinct_tokens?: any;
        last_transaction_version?: any;
        owner_address?: null | string;
        single_token_uri?: null | string;
    }[]>

    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: {
    offset: 0, // starting from the first module
    limit: 10, // limiting to 10 modules
    },
    });

    console.log(accountModules);
    }
    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?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      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?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  decimals?: any;
                  description: string;
                  is_fungible_v2?: null | boolean;
                  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;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              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?: null | {
                collection_id: string;
                current_collection?: null | {
                    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?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                decimals?: any;
                description: string;
                is_fungible_v2?: null | boolean;
                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;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            token_data_id: string;
            token_properties_mutated_v1?: any;
            token_standard: string;
        }>

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      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?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  decimals?: any;
                  description: string;
                  is_fungible_v2?: null | boolean;
                  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;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              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?: null | {
                collection_id: string;
                current_collection?: null | {
                    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?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                decimals?: any;
                description: string;
                is_fungible_v2?: null | boolean;
                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;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            token_data_id: string;
            token_properties_mutated_v1?: any;
            token_standard: string;
        }>

    Returns Promise<{
        amount: any;
        current_token_data?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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 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); +
    + +
  • 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

config: AptosConfig

The configuration settings for the Aptos client.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AptosObject.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AptosObject.html new file mode 100644 index 000000000..085225262 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AptosObject.html @@ -0,0 +1,20 @@ +AptosObject | @aptos-labs/ts-sdk - v1.33.1

A class to query all Object related queries on Aptos.

+

Hierarchy (view full)

Constructors

Methods

Properties

Constructors

  • 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); +
    + +

Methods

  • 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-1.33.1/classes/_internal_.AsyncQueue.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AsyncQueue.html new file mode 100644 index 000000000..15a458640 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AsyncQueue.html @@ -0,0 +1,23 @@ +AsyncQueue | @aptos-labs/ts-sdk - v1.33.1

Type Parameters

  • T

Constructors

Methods

  • 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

Properties

queue: T[] = []
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AsyncQueueCancelledError.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AsyncQueueCancelledError.html new file mode 100644 index 000000000..0205a7d71 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.AsyncQueueCancelledError.html @@ -0,0 +1,13 @@ +AsyncQueueCancelledError | @aptos-labs/ts-sdk - v1.33.1

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 (view full)

  • Error
    • AsyncQueueCancelledError

Constructors

  • Parameters

    • Optionalmessage: string

    Returns AsyncQueueCancelledError

Methods

  • Create .stack property on a target object

    +

    Parameters

    • targetObject: object
    • OptionalconstructorOpt: Function

    Returns void

Properties

message: string
name: string
stack?: string
prepareStackTrace?: ((err: Error, stackTraces: CallSite[]) => any)

Optional override for formatting stack traces

+
stackTraceLimit: number
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Build.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Build.html new file mode 100644 index 000000000..b2f333ef7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Build.html @@ -0,0 +1,33 @@ +Build | @aptos-labs/ts-sdk - v1.33.1

A class to handle all Build transaction operations.

+

Constructors

Methods

Properties

Constructors

  • 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); +
    + +

Methods

  • 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); +
    + +
  • Build a simple transaction.

    +

    This function allows you to create a transaction with specified sender and data.

    +

    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() {
    // Build a simple transaction
    const transaction = await aptos.transaction.simple({
    sender: "0x1", // replace with a real sender account address
    data: {
    function: "0x1::aptos_account::transfer",
    functionArguments: ["0x2", 100], // replace with a real destination account address
    },
    options: {
    gasUnitPrice: 100, // specify your own gas unit price if needed
    maxGasAmount: 1000, // specify your own max gas amount if needed
    },
    });

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

Properties

config: AptosConfig
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Coin.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Coin.html new file mode 100644 index 000000000..84c9a9c0e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Coin.html @@ -0,0 +1,25 @@ +Coin | @aptos-labs/ts-sdk - v1.33.1

A class to handle all Coin operations.

+

Hierarchy (view full)

Constructors

Methods

Properties

Constructors

  • 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); +
    + +

Methods

  • 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-1.33.1/classes/_internal_.DigitalAsset.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.DigitalAsset.html new file mode 100644 index 000000000..325e981ac --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.DigitalAsset.html @@ -0,0 +1,300 @@ +DigitalAsset | @aptos-labs/ts-sdk - v1.33.1

A class to query all DigitalAsset related queries on Aptos.

+

Hierarchy (view full)

Constructors

  • 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); +
    + +

Methods

  • 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

    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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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<{
        cdn_asset_uris?: null | {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: null | string;
            cdn_image_uri?: null | string;
            cdn_json_uri?: null | string;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: null | string;
            raw_image_uri?: null | string;
        };
        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?: null | boolean;
        mutable_uri?: null | boolean;
        table_handle_v1?: null | string;
        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?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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?: null | string;
              before_value?: null | string;
              entry_function_id_str?: null | string;
              event_account_address: string;
              event_index: any;
              from_address?: null | string;
              is_fungible_v2?: null | boolean;
              property_version_v1: any;
              to_address?: null | string;
              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?: null | string;
            before_value?: null | string;
            entry_function_id_str?: null | string;
            event_account_address: string;
            event_index: any;
            from_address?: null | string;
            is_fungible_v2?: null | boolean;
            property_version_v1: any;
            to_address?: null | string;
            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?: null | string;
        before_value?: null | string;
        entry_function_id_str?: null | string;
        event_account_address: string;
        event_index: any;
        from_address?: null | string;
        is_fungible_v2?: null | boolean;
        property_version_v1: any;
        to_address?: null | string;
        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?: null | {
            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?: null | boolean;
            mutable_uri?: null | boolean;
            table_handle_v1?: null | string;
            token_standard: string;
            total_minted_v2?: any;
            uri: string;
        };
        decimals?: any;
        description: string;
        is_fungible_v2?: null | boolean;
        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?: null | {
                  collection_id: string;
                  current_collection?: null | {
                      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?: null | boolean;
                      mutable_uri?: null | boolean;
                      table_handle_v1?: null | string;
                      token_standard: string;
                      total_minted_v2?: any;
                      uri: string;
                  };
                  decimals?: any;
                  description: string;
                  is_fungible_v2?: null | boolean;
                  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;
              };
              is_fungible_v2?: null | boolean;
              is_soulbound_v2?: null | boolean;
              last_transaction_timestamp: any;
              last_transaction_version: any;
              owner_address: string;
              property_version_v1: any;
              storage_id: string;
              table_type_v1?: null | string;
              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?: null | {
                collection_id: string;
                current_collection?: null | {
                    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?: null | boolean;
                    mutable_uri?: null | boolean;
                    table_handle_v1?: null | string;
                    token_standard: string;
                    total_minted_v2?: any;
                    uri: string;
                };
                decimals?: any;
                description: string;
                is_fungible_v2?: null | boolean;
                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;
            };
            is_fungible_v2?: null | boolean;
            is_soulbound_v2?: null | boolean;
            last_transaction_timestamp: any;
            last_transaction_version: any;
            owner_address: string;
            property_version_v1: any;
            storage_id: string;
            table_type_v1?: null | string;
            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?: null | {
            collection_id: string;
            current_collection?: null | {
                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?: null | boolean;
                mutable_uri?: null | boolean;
                table_handle_v1?: null | string;
                token_standard: string;
                total_minted_v2?: any;
                uri: string;
            };
            decimals?: any;
            description: string;
            is_fungible_v2?: null | boolean;
            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;
        };
        is_fungible_v2?: null | boolean;
        is_soulbound_v2?: null | boolean;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        owner_address: string;
        property_version_v1: any;
        storage_id: string;
        table_type_v1?: null | string;
        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-1.33.1/classes/_internal_.Event.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Event.html new file mode 100644 index 000000000..d58800433 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Event.html @@ -0,0 +1,51 @@ +Event | @aptos-labs/ts-sdk - v1.33.1

A class to query all Event Aptos related queries.

+

Hierarchy (view full)

Constructors

  • Initializes a new instance of the Aptos client with the provided configuration.

    +

    Parameters

    • config: AptosConfig

      The configuration settings for the Aptos client.

      +

    Returns Event

    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 }); // Specify your own network if needed
    const aptos = new Aptos(config);

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

Methods

  • Retrieve events associated with a specific account address and creation number.

    +

    Parameters

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

      The parameters for retrieving account events.

      +
      • accountAddress: AccountAddressInput

        The account address to query events for.

        +
      • creationNumber: AnyNumber

        The event creation number to filter the events.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional minimum ledger version to sync up to before querying.

        +

    Returns Promise<{
        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;
    }[]>

    Promise

    +
    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 events for the account at creation number 0
    const events = await aptos.getAccountEventsByCreationNumber({
    accountAddress: "0x1", // replace with a real account address
    creationNumber: 0,
    });

    console.log(events);
    }
    runExample().catch(console.error); +
    + +
  • Retrieve events associated with a specific account address and event type.

    +

    Parameters

    • args: {
          accountAddress: AccountAddressInput;
          eventType: `${string}::${string}::${string}`;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              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;
          }>;
      }
      • accountAddress: AccountAddressInput

        The account address to query events for.

        +
      • eventType: `${string}::${string}::${string}`

        The type of event to filter by.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • Optionaloptions?: PaginationArgs & OrderByArg<{
            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;
        }>

        Optional pagination and ordering parameters for the event query.

        +

    Returns Promise<{
        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;
    }[]>

    Promise

    +
    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 events for a specific account and event type
    const events = await aptos.getAccountEventsByEventType({
    accountAddress: "0x1", // replace with a real account address
    eventType: "0x1::transaction_fee::FeeStatement", // replace with a real event type
    minimumLedgerVersion: 1, // optional, specify if needed
    });

    console.log(events);
    }
    runExample().catch(console.error); +
    + +
  • Retrieve all events from the Aptos blockchain. +An optional where clause can be provided to filter the results based on specific criteria.

    +

    Parameters

    • Optionalargs: {
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              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;
          }> & WhereArg<EventsBoolExp>;
      }

      Optional parameters for the query.

      +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • Optionaloptions?: PaginationArgs & OrderByArg<{
            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;
        }> & WhereArg<EventsBoolExp>

        Optional pagination and filtering options.

        +

    Returns Promise<{
        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;
    }[]>

    GetEventsQuery response type containing the events.

    +
    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 all events
    const events = await aptos.getEvents();

    // Retrieve events with filtering by account address
    const whereCondition = {
    account_address: { _eq: "0x123" }, // replace with a real account address
    };
    const filteredEvents = await aptos.getEvents({
    options: { where: whereCondition },
    });

    console.log(events);
    console.log(filteredEvents);
    }
    runExample().catch(console.error); +
    + +
  • Retrieve module events based on a specified event type. +This function allows you to query for events that are associated with a particular module event type in the Aptos blockchain.

    +

    Parameters

    • args: {
          eventType: `${string}::${string}::${string}`;
          minimumLedgerVersion?: AnyNumber;
          options?: PaginationArgs & OrderByArg<{
              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;
          }>;
      }

      The arguments for retrieving module events.

      +
      • eventType: `${string}::${string}::${string}`

        The event type to filter the results.

        +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • Optionaloptions?: PaginationArgs & OrderByArg<{
            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;
        }>

        Optional pagination and ordering parameters for the event results.

        +

    Returns Promise<{
        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;
    }[]>

    Promise - A promise that resolves to the retrieved events.

    +
    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 module events for a specific event type
    const events = await aptos.getModuleEventsByEventType({
    eventType: "0x1::transaction_fee::FeeStatement", // specify the event type
    minimumLedgerVersion: 1, // optional: specify minimum ledger version if needed
    });

    console.log(events); // log the retrieved events
    }
    runExample().catch(console.error); +
    + +

Properties

config: AptosConfig

The configuration settings for the Aptos client.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.EventEmitter-1.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.EventEmitter-1.html new file mode 100644 index 000000000..f4eaf2ed2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.EventEmitter-1.html @@ -0,0 +1,24 @@ +EventEmitter | @aptos-labs/ts-sdk - v1.33.1

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 full)

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-1.33.1/classes/_internal_.Faucet.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Faucet.html new file mode 100644 index 000000000..68bd33cdf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Faucet.html @@ -0,0 +1,20 @@ +Faucet | @aptos-labs/ts-sdk - v1.33.1

A class to query all Faucet related queries on Aptos.

+

Hierarchy (view full)

Constructors

Methods

Properties

Constructors

  • Initializes a new instance of the Aptos client with the specified configuration.

    +

    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.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); +
    + +

Methods

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

    +

    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.TESTNET });
    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-1.33.1/classes/_internal_.FungibleAsset.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.FungibleAsset.html new file mode 100644 index 000000000..b09534182 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.FungibleAsset.html @@ -0,0 +1,72 @@ +FungibleAsset | @aptos-labs/ts-sdk - v1.33.1

A class for querying and managing fungible asset-related operations on the Aptos blockchain.

+

Hierarchy (view full)

Constructors

  • 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); +
    + +

Methods

  • Queries all fungible asset balances.

    +

    Parameters

    Returns Promise<{
        amount?: any;
        asset_type?: null | string;
        is_frozen: boolean;
        is_primary?: null | boolean;
        last_transaction_timestamp?: any;
        last_transaction_version?: any;
        owner_address: string;
        storage_id: string;
        token_standard?: null | 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?: null | string;
        block_height: any;
        entry_function_id_str?: null | string;
        event_index: any;
        gas_fee_payer_address?: null | string;
        is_frozen?: null | boolean;
        is_gas_fee: boolean;
        is_transaction_success: boolean;
        owner_address?: null | string;
        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?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        maximum_v2?: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        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?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        maximum_v2?: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        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?: null | string;
        last_transaction_timestamp: any;
        last_transaction_version: any;
        maximum_v2?: any;
        name: string;
        project_uri?: null | string;
        supply_aggregator_table_handle_v1?: null | string;
        supply_aggregator_table_key_v1?: null | string;
        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); +
    + +

Properties

config: AptosConfig

The configuration settings for connecting to the Aptos network.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.G1Bytes.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.G1Bytes.html new file mode 100644 index 000000000..55975c4c7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.G1Bytes.html @@ -0,0 +1,21 @@ +G1Bytes | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/_internal_.G2Bytes.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.G2Bytes.html new file mode 100644 index 000000000..cc517322e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.G2Bytes.html @@ -0,0 +1,21 @@ +G2Bytes | @aptos-labs/ts-sdk - v1.33.1

Represents a 64-byte G2 element in a cryptographic context. +This class provides methods for serialization and deserialization of G2 bytes.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/_internal_.General.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.General.html new file mode 100644 index 000000000..a916f8f68 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.General.html @@ -0,0 +1,81 @@ +General | @aptos-labs/ts-sdk - v1.33.1

A class to query various Aptos-related information and perform operations on the Aptos blockchain.

+

Hierarchy (view full)

Constructors

  • 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); +
    + +

Methods

  • 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

    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

    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 MyQuery {
    ledger_infos {
    chain_id
    }
    }`
    });

    console.log(topUserTransactions);
    }
    runExample().catch(console.error); +
    + +
  • Queries for a Move view function

    +

    Type Parameters

    Parameters

    Returns Promise<T>

    an array of Move values

    +
    const data = await aptos.view({
    payload: {
    function: "0x1::coin::balance",
    typeArguments: ["0x1::aptos_coin::AptosCoin"],
    functionArguments: [accountAddress],
    }
    }) +
    + +
  • Queries for a Move view function with JSON, this provides compatability with the old aptos package

    +

    Type Parameters

    Parameters

    Returns Promise<T>

    an array of Move values

    +
    const data = await aptos.view({
    payload: {
    function: "0x1::coin::balance",
    typeArguments: ["0x1::aptos_coin::AptosCoin"],
    functionArguments: [accountAddress.toString()],
    }
    }) +
    + +

Properties

config: AptosConfig
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Keyless.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Keyless.html new file mode 100644 index 000000000..a2beca1cc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Keyless.html @@ -0,0 +1,44 @@ +Keyless | @aptos-labs/ts-sdk - v1.33.1

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 full)

Constructors

  • 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); +
    + +

Methods

  • 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>

    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-1.33.1/classes/_internal_.Proof.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Proof.html new file mode 100644 index 000000000..9d72056c7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Proof.html @@ -0,0 +1,19 @@ +Proof | @aptos-labs/ts-sdk - v1.33.1

An abstract representation of a cryptographic proof associated with specific +zero-knowledge proof schemes, such as Groth16 and PLONK.

+

Hierarchy (view full)

Constructors

Methods

  • 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.

    +
  • 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-1.33.1/classes/_internal_.Simulate.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Simulate.html new file mode 100644 index 000000000..c37cc4d06 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Simulate.html @@ -0,0 +1,34 @@ +Simulate | @aptos-labs/ts-sdk - v1.33.1

A class to handle all Simulate transaction operations.

+

Constructors

Methods

Properties

Constructors

  • 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); +
    + +

Methods

  • 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?: (undefined | PublicKey)[];
          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?: (undefined | PublicKey)[]

        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-1.33.1/classes/_internal_.Staking.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Staking.html new file mode 100644 index 000000000..37327378d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Staking.html @@ -0,0 +1,39 @@ +Staking | @aptos-labs/ts-sdk - v1.33.1

A class to query all Staking related queries on Aptos.

+

Hierarchy (view full)

Constructors

  • 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); +
    + +

Methods

  • 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

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

      The parameters for the query.

      +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

        +
      • poolAddress: AccountAddressInput

        The address of the pool to query.

        +

    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?: null | string;
          }>;
      }

      Optional parameters for the query.

      +
      • OptionalminimumLedgerVersion?: AnyNumber

        Optional ledger version to sync up to before querying.

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

        Optional ordering options for the response.

        +

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

    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); +
    + +

Properties

config: AptosConfig

The configuration settings for the Aptos client.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Submit.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Submit.html new file mode 100644 index 000000000..a044dc618 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Submit.html @@ -0,0 +1,31 @@ +Submit | @aptos-labs/ts-sdk - v1.33.1

A class to handle all Submit transaction operations.

+

Constructors

Methods

Properties

Constructors

  • 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); +
    + +

Methods

  • 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-1.33.1/classes/_internal_.Table.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Table.html new file mode 100644 index 000000000..bbce53b2b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Table.html @@ -0,0 +1,38 @@ +Table | @aptos-labs/ts-sdk - v1.33.1

A class to query all Table Aptos related queries.

+

Hierarchy (view full)

Constructors

  • 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); +
    + +

Methods

  • 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); +
    + +

Properties

config: AptosConfig
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Transaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Transaction.html new file mode 100644 index 000000000..d6c0f2616 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.Transaction.html @@ -0,0 +1,180 @@ +Transaction | @aptos-labs/ts-sdk - v1.33.1

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.TESTNET });
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(); +
+ +

Constructors

  • 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); +
    + +

Methods

  • 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

    • args: {
          transaction: AnyRawTransaction;
      }

      The arguments for obtaining the signing message.

      +

    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); +
    + +
  • Rotate an account's authentication key. After rotation, only the new private key can be used to sign transactions for the account. +Note: Only legacy Ed25519 scheme is supported for now. +More info: https://aptos.dev/guides/account-management/key-rotation/

    +

    Parameters

    • args: {
          fromAccount: Account;
          toNewPrivateKey: PrivateKey;
      }

      The arguments for rotating the auth key.

      +
      • fromAccount: Account

        The account to rotate the auth key for.

        +
      • toNewPrivateKey: PrivateKey

        The new private key to rotate to.

        +

    Returns Promise<TransactionResponse>

    PendingTransactionResponse

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

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

    async function runExample() {
    // Rotate the authentication key for an account
    const response = await aptos.rotateAuthKey({
    // replace with a real account
    fromAccount: Account.generate(),
    // replace with a real private key
    toNewPrivateKey: new PrivateKey("0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"),
    });

    console.log(response);
    }
    runExample().catch(console.error); +
    + +
  • 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 as the fee payer to chain given an authenticator by the sender of the transaction.

    +

    Parameters

    Returns Promise<PendingTransactionResponse>

    PendingTransactionResponse

    +
    const transaction = await aptos.transaction.build.simple({sender: alice.accountAddress, feePayer: true ...})
    const senderAuthenticator = alice.signTransactionWithAuthenticator(transaction)
    const pendingTransaction = await aptos.signAndSubmitAsFeePayer({
    senderAuthenticator,
    feePayer: bob,
    transaction,
    }) +
    + +
  • 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); +
    + +

Properties

build: Build
config: AptosConfig
simulate: Simulate
submit: Submit
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.TransactionManagement.html b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.TransactionManagement.html new file mode 100644 index 000000000..180bda7a9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/classes/_internal_.TransactionManagement.html @@ -0,0 +1,44 @@ +TransactionManagement | @aptos-labs/ts-sdk - v1.33.1

Minimal EventEmitter interface that is molded against the Node.js +EventEmitter interface.

+

Hierarchy (view full)

Constructors

  • 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

  • Return the number of listeners listening to a given event.

    +

    Parameters

    Returns number

  • 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-1.33.1/enums/AccountAuthenticatorVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AccountAuthenticatorVariant.html new file mode 100644 index 000000000..bce80c509 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AccountAuthenticatorVariant.html @@ -0,0 +1,8 @@ +AccountAuthenticatorVariant | @aptos-labs/ts-sdk - v1.33.1

Enumeration AccountAuthenticatorVariant

Enumeration Members

Ed25519
MultiEd25519
MultiKey
NoAccountAuthenticator
SingleKey
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/AddressInvalidReason.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AddressInvalidReason.html new file mode 100644 index 000000000..9a1dd1cea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AddressInvalidReason.html @@ -0,0 +1,10 @@ +AddressInvalidReason | @aptos-labs/ts-sdk - v1.33.1

Enumeration AddressInvalidReason

Provides reasons for an address was invalid.

+

Enumeration Members

INCORRECT_NUMBER_OF_BYTES
INVALID_HEX_CHARS
INVALID_PADDING_STRICTNESS
INVALID_PADDING_ZEROES
LEADING_ZERO_X_REQUIRED
LONG_FORM_REQUIRED_UNLESS_SPECIAL
TOO_LONG
TOO_SHORT
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/AnyPublicKeyVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AnyPublicKeyVariant.html new file mode 100644 index 000000000..bcfc00fe6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AnyPublicKeyVariant.html @@ -0,0 +1,6 @@ +AnyPublicKeyVariant | @aptos-labs/ts-sdk - v1.33.1

Enumeration AnyPublicKeyVariant

Variants of public keys used in cryptographic operations.

+

Enumeration Members

Enumeration Members

Ed25519
FederatedKeyless
Keyless
Secp256k1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/AnySignatureVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AnySignatureVariant.html new file mode 100644 index 000000000..e8a7f2534 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AnySignatureVariant.html @@ -0,0 +1,5 @@ +AnySignatureVariant | @aptos-labs/ts-sdk - v1.33.1

Enumeration AnySignatureVariant

Variants of signature types used for cryptographic operations.

+

Enumeration Members

Enumeration Members

Ed25519
Keyless
Secp256k1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/AptosApiType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AptosApiType.html new file mode 100644 index 000000000..8b993b66b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/AptosApiType.html @@ -0,0 +1,7 @@ +AptosApiType | @aptos-labs/ts-sdk - v1.33.1

Enumeration AptosApiType

Types of API endpoints used for routing requests in the Aptos network.

+

Enumeration Members

Enumeration Members

FAUCET
FULLNODE
INDEXER
PEPPER
PROVER
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/DeriveScheme.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/DeriveScheme.html new file mode 100644 index 000000000..0d0656f96 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/DeriveScheme.html @@ -0,0 +1,12 @@ +DeriveScheme | @aptos-labs/ts-sdk - v1.33.1

Enumeration DeriveScheme

Specifies the schemes for deriving account addresses from various data sources.

+

Enumeration Members

DeriveAuid

Derives an address using an AUID, used for objects

+
DeriveObjectAddressFromGuid

Derives an address from a GUID, used for objects

+
DeriveObjectAddressFromObject

Derives an address from another object address

+
DeriveObjectAddressFromSeed

Derives an address from seed bytes, used for named objects

+
DeriveResourceAccountAddress

Derives an address from seed bytes, used for resource accounts

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralCertificateVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralCertificateVariant.html new file mode 100644 index 000000000..1cb476117 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralCertificateVariant.html @@ -0,0 +1,3 @@ +EphemeralCertificateVariant | @aptos-labs/ts-sdk - v1.33.1

Enumeration EphemeralCertificateVariant

Variants of ephemeral certificates used in secure transactions.

+

Enumeration Members

Enumeration Members

ZkProof
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralPublicKeyVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralPublicKeyVariant.html new file mode 100644 index 000000000..eeac55e4a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralPublicKeyVariant.html @@ -0,0 +1,3 @@ +EphemeralPublicKeyVariant | @aptos-labs/ts-sdk - v1.33.1

Enumeration EphemeralPublicKeyVariant

Variants of ephemeral public keys used in cryptographic operations.

+

Enumeration Members

Enumeration Members

Ed25519
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralSignatureVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralSignatureVariant.html new file mode 100644 index 000000000..7a3f1751e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/EphemeralSignatureVariant.html @@ -0,0 +1,3 @@ +EphemeralSignatureVariant | @aptos-labs/ts-sdk - v1.33.1

Enumeration EphemeralSignatureVariant

Variants of ephemeral signatures used for secure communication.

+

Enumeration Members

Enumeration Members

Ed25519
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/HexInvalidReason.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/HexInvalidReason.html new file mode 100644 index 000000000..4c6f89d02 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/HexInvalidReason.html @@ -0,0 +1,5 @@ +HexInvalidReason | @aptos-labs/ts-sdk - v1.33.1

Enumeration HexInvalidReason

Provides reasons for parsing failures related to hexadecimal values.

+

Enumeration Members

INVALID_HEX_CHARS
INVALID_LENGTH
TOO_SHORT
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeyType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeyType.html new file mode 100644 index 000000000..6744c00a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeyType.html @@ -0,0 +1,3 @@ +KeyType | @aptos-labs/ts-sdk - v1.33.1

Enumeration KeyType

Supported key types and their associated seeds.

+

Enumeration Members

Enumeration Members

ED25519
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorCategory.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorCategory.html new file mode 100644 index 000000000..4440cfef1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorCategory.html @@ -0,0 +1,6 @@ +KeylessErrorCategory | @aptos-labs/ts-sdk - v1.33.1

Enumeration KeylessErrorCategory

Enumeration Members

API_ERROR
EXTERNAL_API_ERROR
INVALID_STATE
SESSION_EXPIRED
UNKNOWN
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorResolutionTip.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorResolutionTip.html new file mode 100644 index 000000000..0b851c1c9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorResolutionTip.html @@ -0,0 +1,10 @@ +KeylessErrorResolutionTip | @aptos-labs/ts-sdk - v1.33.1

Enumeration KeylessErrorResolutionTip

Enumeration Members

CALL_PRECHECK
JOIN_SUPPORT_GROUP
RATE_LIMIT_EXCEEDED
REAUTHENTICATE
REAUTHENTICATE_UNSURE
REINSTANTIATE
SERVER_ERROR
UNKNOWN
UPDATE_REQUEST_PARAMS
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorType.html new file mode 100644 index 000000000..4c8ac0f44 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/KeylessErrorType.html @@ -0,0 +1,28 @@ +KeylessErrorType | @aptos-labs/ts-sdk - v1.33.1

Enumeration KeylessErrorType

Enumeration Members

ASYNC_PROOF_FETCH_FAILED
EPHEMERAL_KEY_PAIR_EXPIRED
FULL_NODE_CONFIG_LOOKUP_ERROR
FULL_NODE_JWKS_LOOKUP_ERROR
FULL_NODE_OTHER
FULL_NODE_VERIFICATION_KEY_LOOKUP_ERROR
INVALID_EXPIRY_HORIZON
INVALID_JWT_FEDERATED_ISS_NOT_SUPPORTED
INVALID_JWT_ISS_NOT_RECOGNIZED
INVALID_JWT_JWK_NOT_FOUND
INVALID_JWT_SIG
INVALID_PROOF_VERIFICATION_FAILED
INVALID_PROOF_VERIFICATION_KEY_NOT_FOUND
INVALID_TW_SIG_PUBLIC_KEY_NOT_FOUND
INVALID_TW_SIG_VERIFICATION_FAILED
JWK_FETCH_FAILED
JWK_FETCH_FAILED_FEDERATED
JWT_PARSING_ERROR
PEPPER_SERVICE_BAD_REQUEST
PEPPER_SERVICE_INTERNAL_ERROR
PEPPER_SERVICE_OTHER
PROOF_NOT_FOUND
PROVER_SERVICE_BAD_REQUEST
PROVER_SERVICE_INTERNAL_ERROR
PROVER_SERVICE_OTHER
RATE_LIMIT_EXCEEDED
UNKNOWN
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/MimeType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/MimeType.html new file mode 100644 index 000000000..145671a06 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/MimeType.html @@ -0,0 +1,9 @@ +MimeType | @aptos-labs/ts-sdk - v1.33.1

Enumeration MimeType

Different MIME types used for data interchange in transactions and responses.

+

Enumeration Members

BCS

BCS representation, used for accept type BCS output

+
BCS_SIGNED_TRANSACTION

BCS representation, used for transaction submission in BCS input

+
BCS_VIEW_FUNCTION
JSON

JSON representation, used for transaction submission and accept type JSON output

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/MoveAbility.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/MoveAbility.html new file mode 100644 index 000000000..acd3468ba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/MoveAbility.html @@ -0,0 +1,6 @@ +MoveAbility | @aptos-labs/ts-sdk - v1.33.1

Enumeration MoveAbility

Abilities related to moving items within the system.

+

Enumeration Members

Enumeration Members

COPY
DROP
KEY
STORE
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/MoveFunctionVisibility.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/MoveFunctionVisibility.html new file mode 100644 index 000000000..394dee066 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/MoveFunctionVisibility.html @@ -0,0 +1,5 @@ +MoveFunctionVisibility | @aptos-labs/ts-sdk - v1.33.1

Enumeration MoveFunctionVisibility

Specifies the visibility levels for move functions, controlling access permissions.

+

Enumeration Members

Enumeration Members

FRIEND
PRIVATE
PUBLIC
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/Network.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/Network.html new file mode 100644 index 000000000..540e2965b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/Network.html @@ -0,0 +1,7 @@ +Network | @aptos-labs/ts-sdk - v1.33.1

Enumeration Network

Different network environments for connecting to services, ranging from production to development setups.

+

Enumeration Members

Enumeration Members

CUSTOM
DEVNET
LOCAL
MAINNET
TESTNET
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/PrivateKeyVariants.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/PrivateKeyVariants.html new file mode 100644 index 000000000..efdb7638d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/PrivateKeyVariants.html @@ -0,0 +1,5 @@ +PrivateKeyVariants | @aptos-labs/ts-sdk - v1.33.1

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

+

Enumeration Members

Enumeration Members

Ed25519
Secp256k1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/ProcessorType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/ProcessorType.html new file mode 100644 index 000000000..671cdea8a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/ProcessorType.html @@ -0,0 +1,11 @@ +ProcessorType | @aptos-labs/ts-sdk - v1.33.1

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

+

Enumeration Members

ACCOUNT_TRANSACTION_PROCESSOR
DEFAULT
EVENTS_PROCESSOR
FUNGIBLE_ASSET_PROCESSOR
OBJECT_PROCESSOR
STAKE_PROCESSOR
TOKEN_V2_PROCESSOR
USER_TRANSACTION_PROCESSOR
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/RoleType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/RoleType.html new file mode 100644 index 000000000..7532beccc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/RoleType.html @@ -0,0 +1,4 @@ +RoleType | @aptos-labs/ts-sdk - v1.33.1

Enumeration RoleType

Roles that can be assigned within the system, indicating different levels of access and functionality.

+

Enumeration Members

Enumeration Members

FULL_NODE
VALIDATOR
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/ScriptTransactionArgumentVariants.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/ScriptTransactionArgumentVariants.html new file mode 100644 index 000000000..fddf0a619 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/ScriptTransactionArgumentVariants.html @@ -0,0 +1,13 @@ +ScriptTransactionArgumentVariants | @aptos-labs/ts-sdk - v1.33.1

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

+

Enumeration Members

Enumeration Members

Address
Bool
Serialized
U128
U16
U256
U32
U64
U8
U8Vector
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/SigningScheme.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/SigningScheme.html new file mode 100644 index 000000000..3b41b5106 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/SigningScheme.html @@ -0,0 +1,9 @@ +SigningScheme | @aptos-labs/ts-sdk - v1.33.1

Enumeration SigningScheme

Different schemes for signing keys used in cryptographic operations.

+

Enumeration Members

Enumeration Members

Ed25519

For Ed25519PublicKey

+
MultiEd25519

For MultiEd25519PublicKey

+
MultiKey
SingleKey

For SingleKey ecdsa

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/SigningSchemeInput.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/SigningSchemeInput.html new file mode 100644 index 000000000..c09ce36b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/SigningSchemeInput.html @@ -0,0 +1,6 @@ +SigningSchemeInput | @aptos-labs/ts-sdk - v1.33.1

Enumeration SigningSchemeInput

Specifies the signing schemes available for cryptographic operations.

+

Enumeration Members

Enumeration Members

Ed25519

For Ed25519PublicKey

+
Secp256k1Ecdsa

For Secp256k1Ecdsa

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionAuthenticatorVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionAuthenticatorVariant.html new file mode 100644 index 000000000..7a79dc731 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionAuthenticatorVariant.html @@ -0,0 +1,8 @@ +TransactionAuthenticatorVariant | @aptos-labs/ts-sdk - v1.33.1

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

+

Enumeration Members

Ed25519
FeePayer
MultiAgent
MultiEd25519
SingleSender
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionPayloadVariants.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionPayloadVariants.html new file mode 100644 index 000000000..d395cf64d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionPayloadVariants.html @@ -0,0 +1,6 @@ +TransactionPayloadVariants | @aptos-labs/ts-sdk - v1.33.1

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

+

Enumeration Members

Enumeration Members

EntryFunction
Multisig
Script
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionResponseType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionResponseType.html new file mode 100644 index 000000000..070b0e9eb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionResponseType.html @@ -0,0 +1,9 @@ +TransactionResponseType | @aptos-labs/ts-sdk - v1.33.1

Enumeration TransactionResponseType

Different types of transaction responses that can occur in the system.

+

Enumeration Members

BlockEpilogue
BlockMetadata
Genesis
Pending
StateCheckpoint
User
Validator
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionVariants.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionVariants.html new file mode 100644 index 000000000..e8fb03697 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionVariants.html @@ -0,0 +1,5 @@ +TransactionVariants | @aptos-labs/ts-sdk - v1.33.1

Enumeration TransactionVariants

Enumeration Members

FeePayerTransaction
MultiAgentTransaction
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionWorkerEventsEnum.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionWorkerEventsEnum.html new file mode 100644 index 000000000..a121d99c7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TransactionWorkerEventsEnum.html @@ -0,0 +1,7 @@ +TransactionWorkerEventsEnum | @aptos-labs/ts-sdk - v1.33.1

Enumeration TransactionWorkerEventsEnum

Events emitted by the transaction worker during its operation, allowing the dapp to respond to various transaction states.

+

Enumeration Members

ExecutionFinish
TransactionExecuted
TransactionExecutionFailed
TransactionSendFailed
TransactionSent
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/TypeTagParserErrorType.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TypeTagParserErrorType.html new file mode 100644 index 000000000..0d7779d2f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TypeTagParserErrorType.html @@ -0,0 +1,16 @@ +TypeTagParserErrorType | @aptos-labs/ts-sdk - v1.33.1

Enumeration TypeTagParserErrorType

Error types related to parsing type tags, indicating various issues encountered during the parsing process.

+

Enumeration Members

InvalidAddress
InvalidModuleNameCharacter
InvalidStructNameCharacter
InvalidTypeTag
MissingTypeArgument
MissingTypeArgumentClose
TypeArgumentCountMismatch
UnexpectedComma
UnexpectedGenericType
UnexpectedPrimitiveTypeArguments
UnexpectedStructFormat
UnexpectedTypeArgumentClose
UnexpectedVectorTypeArgumentCount
UnexpectedWhitespaceCharacter
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/TypeTagVariants.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TypeTagVariants.html new file mode 100644 index 000000000..55ffab858 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/TypeTagVariants.html @@ -0,0 +1,16 @@ +TypeTagVariants | @aptos-labs/ts-sdk - v1.33.1

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

+

Enumeration Members

Enumeration Members

Address
Bool
Generic
Reference
Signer
Struct
U128
U16
U256
U32
U64
U8
Vector
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/ZkpVariant.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/ZkpVariant.html new file mode 100644 index 000000000..b2b2726d4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/ZkpVariant.html @@ -0,0 +1,3 @@ +ZkpVariant | @aptos-labs/ts-sdk - v1.33.1

Enumeration ZkpVariant

Variants of zero-knowledge proofs used in cryptographic operations.

+

Enumeration Members

Enumeration Members

Groth16
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumn.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumn.html new file mode 100644 index 000000000..832db33ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumn.html @@ -0,0 +1,28 @@ +CurrentAptosNamesSelectColumn | @aptos-labs/ts-sdk - v1.33.1

Enumeration CurrentAptosNamesSelectColumn

select columns of table "current_aptos_names"

+

Enumeration Members

Domain

column name

+
DomainExpirationTimestamp

column name

+
DomainWithSuffix

column name

+
ExpirationTimestamp

column name

+
IsActive

column name

+
IsPrimary

column name

+
LastTransactionVersion

column name

+
OwnerAddress

column name

+
RegisteredAddress

column name

+
Subdomain

column name

+
SubdomainExpirationPolicy

column name

+
TokenName

column name

+
TokenStandard

column name

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html new file mode 100644 index 000000000..9fd6dd266 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns.html @@ -0,0 +1,6 @@ +CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns | @aptos-labs/ts-sdk - v1.33.1

Enumeration CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns

select "current_aptos_names_aggregate_bool_exp_bool_and_arguments_columns" columns of table "current_aptos_names"

+

Enumeration Members

Enumeration Members

IsActive

column name

+
IsPrimary

column name

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html b/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html new file mode 100644 index 000000000..4657fa431 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/enums/_internal_.CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns.html @@ -0,0 +1,6 @@ +CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns | @aptos-labs/ts-sdk - v1.33.1

Enumeration CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns

select "current_aptos_names_aggregate_bool_exp_bool_or_arguments_columns" columns of table "current_aptos_names"

+

Enumeration Members

Enumeration Members

IsActive

column name

+
IsPrimary

column name

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/CKDPriv.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/CKDPriv.html new file mode 100644 index 000000000..756ed2110 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/CKDPriv.html @@ -0,0 +1,2 @@ +CKDPriv | @aptos-labs/ts-sdk - v1.33.1

Derive a child key from the private key

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/aptosCoinStructTag.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/aptosCoinStructTag.html new file mode 100644 index 000000000..27ef17380 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/aptosCoinStructTag.html @@ -0,0 +1,3 @@ +aptosCoinStructTag | @aptos-labs/ts-sdk - v1.33.1

Function aptosCoinStructTag

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/aptosRequest-1.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/aptosRequest-1.html new file mode 100644 index 000000000..1b799422c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/aptosRequest-1.html @@ -0,0 +1,6 @@ +aptosRequest | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/base64UrlDecode.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/base64UrlDecode.html new file mode 100644 index 000000000..59e5a9832 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/base64UrlDecode.html @@ -0,0 +1,5 @@ +base64UrlDecode | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/bigIntToBytesLE.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/bigIntToBytesLE.html new file mode 100644 index 000000000..f0690910a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/bigIntToBytesLE.html @@ -0,0 +1,7 @@ +bigIntToBytesLE | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/buildTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/buildTransaction.html new file mode 100644 index 000000000..5b3e337d3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/buildTransaction.html @@ -0,0 +1,18 @@ +buildTransaction | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/bytesToBigIntLE.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/bytesToBigIntLE.html new file mode 100644 index 000000000..78a51b9c5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/bytesToBigIntLE.html @@ -0,0 +1,5 @@ +bytesToBigIntLE | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/checkOrConvertArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/checkOrConvertArgument.html new file mode 100644 index 000000000..88474eed1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/checkOrConvertArgument.html @@ -0,0 +1,7 @@ +checkOrConvertArgument | @aptos-labs/ts-sdk - v1.33.1

Function checkOrConvertArgument

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertAmountFromHumanReadableToOnChain.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertAmountFromHumanReadableToOnChain.html new file mode 100644 index 000000000..eaed36341 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertAmountFromHumanReadableToOnChain.html @@ -0,0 +1,9 @@ +convertAmountFromHumanReadableToOnChain | @aptos-labs/ts-sdk - v1.33.1

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

+
human-readable amount format: 500
on chain amount format when decimal is 8: 50000000000 +
+ +
  • Parameters

    • value: number

      The value in human-readable format

      +
    • decimal: number

      The token decimal

      +

    Returns number

    The value in the smallest units

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertAmountFromOnChainToHumanReadable.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertAmountFromOnChainToHumanReadable.html new file mode 100644 index 000000000..6cd1c7bcc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertAmountFromOnChainToHumanReadable.html @@ -0,0 +1,9 @@ +convertAmountFromOnChainToHumanReadable | @aptos-labs/ts-sdk - v1.33.1

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

+
human-readable amount format: 500
on chain amount format when decimal is 8: 50000000000 +
+ +
  • Parameters

    • value: number

      The value in human-readable format

      +
    • decimal: number

      The token decimal

      +

    Returns number

    The value in the smallest units

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertArgument.html new file mode 100644 index 000000000..378dbc5b9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertArgument.html @@ -0,0 +1,8 @@ +convertArgument | @aptos-labs/ts-sdk - v1.33.1

Function convertArgument

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertNumber.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertNumber.html new file mode 100644 index 000000000..810b083d7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/convertNumber.html @@ -0,0 +1,6 @@ +convertNumber | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/createObjectAddress.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/createObjectAddress.html new file mode 100644 index 000000000..6a3a3e25a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/createObjectAddress.html @@ -0,0 +1,5 @@ +createObjectAddress | @aptos-labs/ts-sdk - v1.33.1

Function createObjectAddress

Creates an object address from creator address and seed

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/createResourceAddress.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/createResourceAddress.html new file mode 100644 index 000000000..e0b6d665e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/createResourceAddress.html @@ -0,0 +1,5 @@ +createResourceAddress | @aptos-labs/ts-sdk - v1.33.1

Function createResourceAddress

Creates a resource address from creator address and seed

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/createTokenAddress.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/createTokenAddress.html new file mode 100644 index 000000000..d921d4858 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/createTokenAddress.html @@ -0,0 +1,6 @@ +createTokenAddress | @aptos-labs/ts-sdk - v1.33.1

Function createTokenAddress

Creates a token object address from creator address, collection name and token name

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/deriveKey.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/deriveKey.html new file mode 100644 index 000000000..be00b0e46 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/deriveKey.html @@ -0,0 +1 @@ +deriveKey | @aptos-labs/ts-sdk - v1.33.1

Function deriveKey

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/deriveTransactionType.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/deriveTransactionType.html new file mode 100644 index 000000000..fbba24a1e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/deriveTransactionType.html @@ -0,0 +1,11 @@ +deriveTransactionType | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/deserializeFromScriptArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/deserializeFromScriptArgument.html new file mode 100644 index 000000000..e389a674c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/deserializeFromScriptArgument.html @@ -0,0 +1,6 @@ +deserializeFromScriptArgument | @aptos-labs/ts-sdk - v1.33.1

Function deserializeFromScriptArgument

  • Deserialize a Script Transaction Argument. +This function retrieves and deserializes various types of script transaction arguments based on the provided deserializer.

    +

    Parameters

    • deserializer: Deserializer

      The deserializer used to read the script transaction argument.

      +

    Returns TransactionArgument

    The deserialized script transaction argument.

    +

    Error if the variant index is unknown.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/ensureBoolean.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/ensureBoolean.html new file mode 100644 index 000000000..0069a85a1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/ensureBoolean.html @@ -0,0 +1 @@ +ensureBoolean | @aptos-labs/ts-sdk - v1.33.1

Function ensureBoolean

  • Parameters

    • value: unknown

    Returns asserts value is boolean

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/fetchEntryFunctionAbi.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/fetchEntryFunctionAbi.html new file mode 100644 index 000000000..c3608d009 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/fetchEntryFunctionAbi.html @@ -0,0 +1,9 @@ +fetchEntryFunctionAbi | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/fetchFunctionAbi.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/fetchFunctionAbi.html new file mode 100644 index 000000000..dc9925d8d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/fetchFunctionAbi.html @@ -0,0 +1,7 @@ +fetchFunctionAbi | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/fetchViewFunctionAbi.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/fetchViewFunctionAbi.html new file mode 100644 index 000000000..d504ac090 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/fetchViewFunctionAbi.html @@ -0,0 +1,9 @@ +fetchViewFunctionAbi | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/findFirstNonSignerArg.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/findFirstNonSignerArg.html new file mode 100644 index 000000000..3b2541a17 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/findFirstNonSignerArg.html @@ -0,0 +1,7 @@ +findFirstNonSignerArg | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/floorToWholeHour.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/floorToWholeHour.html new file mode 100644 index 000000000..0fb8c915d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/floorToWholeHour.html @@ -0,0 +1,4 @@ +floorToWholeHour | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/generateRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateRawTransaction.html new file mode 100644 index 000000000..43b8a8029 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateRawTransaction.html @@ -0,0 +1,9 @@ +generateRawTransaction | @aptos-labs/ts-sdk - v1.33.1

Function generateRawTransaction

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSignedTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSignedTransaction.html new file mode 100644 index 000000000..052361d9f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSignedTransaction.html @@ -0,0 +1,7 @@ +generateSignedTransaction | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/generateSignedTransactionForSimulation.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSignedTransactionForSimulation.html new file mode 100644 index 000000000..792b81d65 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSignedTransactionForSimulation.html @@ -0,0 +1,5 @@ +generateSignedTransactionForSimulation | @aptos-labs/ts-sdk - v1.33.1

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

    Returns Uint8Array

    A signed serialized transaction that can be simulated.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSigningMessage.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSigningMessage.html new file mode 100644 index 000000000..edaf4ae5b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSigningMessage.html @@ -0,0 +1,6 @@ +generateSigningMessage | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/generateSigningMessageForSerializable.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSigningMessageForSerializable.html new file mode 100644 index 000000000..9a599d69d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSigningMessageForSerializable.html @@ -0,0 +1,6 @@ +generateSigningMessageForSerializable | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/generateSigningMessageForTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSigningMessageForTransaction.html new file mode 100644 index 000000000..62fc83810 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateSigningMessageForTransaction.html @@ -0,0 +1,5 @@ +generateSigningMessageForTransaction | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/generateTransactionPayload.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateTransactionPayload.html new file mode 100644 index 000000000..ad3939496 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateTransactionPayload.html @@ -0,0 +1,13 @@ +generateTransactionPayload | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/generateTransactionPayloadWithABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateTransactionPayloadWithABI.html new file mode 100644 index 000000000..f55ae9ddc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateTransactionPayloadWithABI.html @@ -0,0 +1,5 @@ +generateTransactionPayloadWithABI | @aptos-labs/ts-sdk - v1.33.1

Function generateTransactionPayloadWithABI

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateUserTransactionHash.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateUserTransactionHash.html new file mode 100644 index 000000000..947a73e8f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateUserTransactionHash.html @@ -0,0 +1,4 @@ +generateUserTransactionHash | @aptos-labs/ts-sdk - v1.33.1

Function generateUserTransactionHash

  • Generates a user transaction hash for the provided transaction payload, which must already have an authenticator. +This function helps ensure the integrity and uniqueness of the transaction by producing a hash based on the signed transaction data.

    +

    Parameters

    Returns string

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateViewFunctionPayload.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateViewFunctionPayload.html new file mode 100644 index 000000000..bca351e12 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateViewFunctionPayload.html @@ -0,0 +1,5 @@ +generateViewFunctionPayload | @aptos-labs/ts-sdk - v1.33.1

Function generateViewFunctionPayload

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateViewFunctionPayloadWithABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateViewFunctionPayloadWithABI.html new file mode 100644 index 000000000..710f39895 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/generateViewFunctionPayloadWithABI.html @@ -0,0 +1,7 @@ +generateViewFunctionPayloadWithABI | @aptos-labs/ts-sdk - v1.33.1

Function generateViewFunctionPayloadWithABI

  • Generates a payload for a view function call using the provided ABI and arguments. +This function ensures that the type arguments and function arguments are correctly formatted +and match the expected counts as defined in the ABI.

    +

    Parameters

    Returns EntryFunction

    Error if the type argument count does not match the ABI or if the function arguments +do not match the expected parameters defined in the ABI.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/get.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/get.html new file mode 100644 index 000000000..550dae480 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/get.html @@ -0,0 +1,4 @@ +get | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAptosFullNode.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAptosFullNode.html new file mode 100644 index 000000000..798bab9a7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAptosFullNode.html @@ -0,0 +1,4 @@ +getAptosFullNode | @aptos-labs/ts-sdk - v1.33.1

Function getAptosFullNode

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAptosPepperService.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAptosPepperService.html new file mode 100644 index 000000000..71e14f539 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAptosPepperService.html @@ -0,0 +1,4 @@ +getAptosPepperService | @aptos-labs/ts-sdk - v1.33.1

Function getAptosPepperService

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAuthenticatorForSimulation.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAuthenticatorForSimulation.html new file mode 100644 index 000000000..e8bc92847 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getAuthenticatorForSimulation.html @@ -0,0 +1 @@ +getAuthenticatorForSimulation | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/getErrorMessage.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getErrorMessage.html new file mode 100644 index 000000000..46f3da166 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getErrorMessage.html @@ -0,0 +1,4 @@ +getErrorMessage | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/getFunctionParts.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getFunctionParts.html new file mode 100644 index 000000000..999b64191 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getFunctionParts.html @@ -0,0 +1,6 @@ +getFunctionParts | @aptos-labs/ts-sdk - v1.33.1

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.

    +
    • functionName: string
    • moduleAddress: string
    • moduleName: string

    Error if the function identifier does not contain exactly three parts.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/getIssAudAndUidVal.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getIssAudAndUidVal.html new file mode 100644 index 000000000..d523817c0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getIssAudAndUidVal.html @@ -0,0 +1,6 @@ +getIssAudAndUidVal | @aptos-labs/ts-sdk - v1.33.1

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.

    +
    • aud: string
    • iss: string
    • uidVal: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/getKeylessConfig.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getKeylessConfig.html new file mode 100644 index 000000000..eaca9e377 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getKeylessConfig.html @@ -0,0 +1,7 @@ +getKeylessConfig | @aptos-labs/ts-sdk - v1.33.1

Function getKeylessConfig

  • Retrieves the configuration parameters for Keyless Accounts on the blockchain, including the verifying key and the maximum +expiry horizon.

    +

    Parameters

    • args: {
          aptosConfig: AptosConfig;
          options?: LedgerVersionArg;
      }

      The arguments for retrieving the keyless configuration.

      +
      • aptosConfig: AptosConfig

        The Aptos configuration object containing network details.

        +
      • Optionaloptions?: LedgerVersionArg

        Optional parameters for the request.

        +

    Returns Promise<KeylessConfiguration>

    KeylessConfiguration - The configuration object containing the verifying key and maximum expiry horizon.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/getKeylessJWKs.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getKeylessJWKs.html new file mode 100644 index 000000000..436af3c7e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/getKeylessJWKs.html @@ -0,0 +1 @@ +getKeylessJWKs | @aptos-labs/ts-sdk - v1.33.1

Function getKeylessJWKs

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/hashStrToField.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/hashStrToField.html new file mode 100644 index 000000000..a489af67c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/hashStrToField.html @@ -0,0 +1,6 @@ +hashStrToField | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/hashValues.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/hashValues.html new file mode 100644 index 000000000..20d6211e0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/hashValues.html @@ -0,0 +1,3 @@ +hashValues | @aptos-labs/ts-sdk - v1.33.1

Function hashValues

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/hexToAsciiString.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/hexToAsciiString.html new file mode 100644 index 000000000..44d2666bc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/hexToAsciiString.html @@ -0,0 +1 @@ +hexToAsciiString | @aptos-labs/ts-sdk - v1.33.1

Function hexToAsciiString

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsAddress.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsAddress.html new file mode 100644 index 000000000..af2228e33 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsAddress.html @@ -0,0 +1 @@ +isBcsAddress | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsBool.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsBool.html new file mode 100644 index 000000000..da0e160ad --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsBool.html @@ -0,0 +1 @@ +isBcsBool | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsFixedBytes.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsFixedBytes.html new file mode 100644 index 000000000..cfcf3b219 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsFixedBytes.html @@ -0,0 +1 @@ +isBcsFixedBytes | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsString.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsString.html new file mode 100644 index 000000000..b790a3311 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsString.html @@ -0,0 +1 @@ +isBcsString | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU128.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU128.html new file mode 100644 index 000000000..7ef74896e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU128.html @@ -0,0 +1 @@ +isBcsU128 | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU16.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU16.html new file mode 100644 index 000000000..77e445f1b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU16.html @@ -0,0 +1 @@ +isBcsU16 | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU256.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU256.html new file mode 100644 index 000000000..08d0616ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU256.html @@ -0,0 +1 @@ +isBcsU256 | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU32.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU32.html new file mode 100644 index 000000000..dfff8df35 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU32.html @@ -0,0 +1 @@ +isBcsU32 | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU64.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU64.html new file mode 100644 index 000000000..3c40b6978 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU64.html @@ -0,0 +1 @@ +isBcsU64 | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU8.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU8.html new file mode 100644 index 000000000..f1a2f8027 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBcsU8.html @@ -0,0 +1 @@ +isBcsU8 | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBlockEpilogueTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBlockEpilogueTransactionResponse.html new file mode 100644 index 000000000..f92dd8975 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBlockEpilogueTransactionResponse.html @@ -0,0 +1,4 @@ +isBlockEpilogueTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Function isBlockEpilogueTransactionResponse

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBlockMetadataTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBlockMetadataTransactionResponse.html new file mode 100644 index 000000000..641d63dd7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBlockMetadataTransactionResponse.html @@ -0,0 +1,4 @@ +isBlockMetadataTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Function isBlockMetadataTransactionResponse

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBool.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBool.html new file mode 100644 index 000000000..9a3c99930 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isBool.html @@ -0,0 +1,5 @@ +isBool | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isCanonicalEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isCanonicalEd25519Signature.html new file mode 100644 index 000000000..3c6d24bf2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isCanonicalEd25519Signature.html @@ -0,0 +1,7 @@ +isCanonicalEd25519Signature | @aptos-labs/ts-sdk - v1.33.1

Function isCanonicalEd25519Signature

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEd25519Signature.html new file mode 100644 index 000000000..025dbabc6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEd25519Signature.html @@ -0,0 +1,6 @@ +isEd25519Signature | @aptos-labs/ts-sdk - v1.33.1

Function isEd25519Signature

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEmptyOption.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEmptyOption.html new file mode 100644 index 000000000..91897bde9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEmptyOption.html @@ -0,0 +1,4 @@ +isEmptyOption | @aptos-labs/ts-sdk - v1.33.1

Function isEmptyOption

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEncodedEntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEncodedEntryFunctionArgument.html new file mode 100644 index 000000000..57ddf1fe2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEncodedEntryFunctionArgument.html @@ -0,0 +1,4 @@ +isEncodedEntryFunctionArgument | @aptos-labs/ts-sdk - v1.33.1

Function isEncodedEntryFunctionArgument

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEncodedStruct.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEncodedStruct.html new file mode 100644 index 000000000..954ce215e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isEncodedStruct.html @@ -0,0 +1,9 @@ +isEncodedStruct | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/isFeePayerSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isFeePayerSignature.html new file mode 100644 index 000000000..65dfff073 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isFeePayerSignature.html @@ -0,0 +1,4 @@ +isFeePayerSignature | @aptos-labs/ts-sdk - v1.33.1

Function isFeePayerSignature

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isGenesisTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isGenesisTransactionResponse.html new file mode 100644 index 000000000..fed5d9175 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isGenesisTransactionResponse.html @@ -0,0 +1,4 @@ +isGenesisTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Function isGenesisTransactionResponse

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isKeylessSigner.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isKeylessSigner.html new file mode 100644 index 000000000..58ec5b209 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isKeylessSigner.html @@ -0,0 +1 @@ +isKeylessSigner | @aptos-labs/ts-sdk - v1.33.1

Function isKeylessSigner

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isLargeNumber.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isLargeNumber.html new file mode 100644 index 000000000..32c785125 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isLargeNumber.html @@ -0,0 +1,3 @@ +isLargeNumber | @aptos-labs/ts-sdk - v1.33.1

Function isLargeNumber

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isMultiAgentSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isMultiAgentSignature.html new file mode 100644 index 000000000..dcdf82977 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isMultiAgentSignature.html @@ -0,0 +1,4 @@ +isMultiAgentSignature | @aptos-labs/ts-sdk - v1.33.1

Function isMultiAgentSignature

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isMultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isMultiEd25519Signature.html new file mode 100644 index 000000000..e410791ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isMultiEd25519Signature.html @@ -0,0 +1,4 @@ +isMultiEd25519Signature | @aptos-labs/ts-sdk - v1.33.1

Function isMultiEd25519Signature

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isNumber.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isNumber.html new file mode 100644 index 000000000..211e2a8c2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isNumber.html @@ -0,0 +1,4 @@ +isNumber | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isPendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isPendingTransactionResponse.html new file mode 100644 index 000000000..b9d4bc673 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isPendingTransactionResponse.html @@ -0,0 +1,4 @@ +isPendingTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Function isPendingTransactionResponse

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isScriptDataInput.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isScriptDataInput.html new file mode 100644 index 000000000..ea61bd5ba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isScriptDataInput.html @@ -0,0 +1,3 @@ +isScriptDataInput | @aptos-labs/ts-sdk - v1.33.1

Function isScriptDataInput

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isSecp256k1Signature.html new file mode 100644 index 000000000..10278f33e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isSecp256k1Signature.html @@ -0,0 +1,4 @@ +isSecp256k1Signature | @aptos-labs/ts-sdk - v1.33.1

Function isSecp256k1Signature

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isStateCheckpointTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isStateCheckpointTransactionResponse.html new file mode 100644 index 000000000..1a3994f57 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isStateCheckpointTransactionResponse.html @@ -0,0 +1,4 @@ +isStateCheckpointTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Function isStateCheckpointTransactionResponse

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isString.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isString.html new file mode 100644 index 000000000..b94632803 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isString.html @@ -0,0 +1,4 @@ +isString | @aptos-labs/ts-sdk - v1.33.1
  • 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-1.33.1/functions/isUserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isUserTransactionResponse.html new file mode 100644 index 000000000..55798eb2a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isUserTransactionResponse.html @@ -0,0 +1,4 @@ +isUserTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Function isUserTransactionResponse

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/isValidBIP44Path.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isValidBIP44Path.html new file mode 100644 index 000000000..9a303c3c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isValidBIP44Path.html @@ -0,0 +1,7 @@ +isValidBIP44Path | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/isValidHardenedPath.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isValidHardenedPath.html new file mode 100644 index 000000000..73fa4d2aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isValidHardenedPath.html @@ -0,0 +1,12 @@ +isValidHardenedPath | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/isValidatorTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isValidatorTransactionResponse.html new file mode 100644 index 000000000..c91949317 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/isValidatorTransactionResponse.html @@ -0,0 +1,4 @@ +isValidatorTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Function isValidatorTransactionResponse

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/mnemonicToSeed.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/mnemonicToSeed.html new file mode 100644 index 000000000..a8b4f4acc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/mnemonicToSeed.html @@ -0,0 +1,3 @@ +mnemonicToSeed | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/normalizeBundle.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/normalizeBundle.html new file mode 100644 index 000000000..0f0ae6f36 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/normalizeBundle.html @@ -0,0 +1,5 @@ +normalizeBundle | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/nowInSeconds.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/nowInSeconds.html new file mode 100644 index 000000000..5ea72ec2e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/nowInSeconds.html @@ -0,0 +1 @@ +nowInSeconds | @aptos-labs/ts-sdk - v1.33.1

Function nowInSeconds

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/objectStructTag.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/objectStructTag.html new file mode 100644 index 000000000..8db465c49 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/objectStructTag.html @@ -0,0 +1,4 @@ +objectStructTag | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/optionStructTag.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/optionStructTag.html new file mode 100644 index 000000000..eea838651 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/optionStructTag.html @@ -0,0 +1,4 @@ +optionStructTag | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/outOfRangeErrorMessage.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/outOfRangeErrorMessage.html new file mode 100644 index 000000000..f76191100 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/outOfRangeErrorMessage.html @@ -0,0 +1 @@ +outOfRangeErrorMessage | @aptos-labs/ts-sdk - v1.33.1

Function outOfRangeErrorMessage

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/padAndPackBytesWithLen.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/padAndPackBytesWithLen.html new file mode 100644 index 000000000..785f4d892 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/padAndPackBytesWithLen.html @@ -0,0 +1,8 @@ +padAndPackBytesWithLen | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/paginateWithCursor.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/paginateWithCursor.html new file mode 100644 index 000000000..ab4e8c72e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/paginateWithCursor.html @@ -0,0 +1 @@ +paginateWithCursor | @aptos-labs/ts-sdk - v1.33.1

Function paginateWithCursor

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseEncodedStruct.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseEncodedStruct.html new file mode 100644 index 000000000..f725f7868 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseEncodedStruct.html @@ -0,0 +1,7 @@ +parseEncodedStruct | @aptos-labs/ts-sdk - v1.33.1

Function parseEncodedStruct

Convert an encoded struct to a MoveStructId.

+
const structObj = {
account_address: "0x1",
module_name: "0x6170746f735f636f696e",
struct_name: "0x4170746f73436f696e",
};
// structId is "0x1::aptos_coin::AptosCoin"
const structId = parseEncodedStruct(structObj); +
+ +
  • Parameters

    • structObj: {
          account_address: string;
          module_name: string;
          struct_name: string;
      }

      The struct with account_address, module_name, and struct_name properties

      +
      • account_address: string
      • module_name: string
      • struct_name: string

    Returns `${string}::${string}::${string}`

    The MoveStructId

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseJwtHeader.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseJwtHeader.html new file mode 100644 index 000000000..b93c2a31d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseJwtHeader.html @@ -0,0 +1,4 @@ +parseJwtHeader | @aptos-labs/ts-sdk - v1.33.1

Function parseJwtHeader

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseTypeTag.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseTypeTag.html new file mode 100644 index 000000000..f6b4247e7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/parseTypeTag.html @@ -0,0 +1,24 @@ +parseTypeTag | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/poseidonHash.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/poseidonHash.html new file mode 100644 index 000000000..d40588e22 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/poseidonHash.html @@ -0,0 +1,6 @@ +poseidonHash | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/post.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/post.html new file mode 100644 index 000000000..96caa91b0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/post.html @@ -0,0 +1,4 @@ +post | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosFaucet.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosFaucet.html new file mode 100644 index 000000000..d31c53d5e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosFaucet.html @@ -0,0 +1,4 @@ +postAptosFaucet | @aptos-labs/ts-sdk - v1.33.1

Function postAptosFaucet

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosFullNode.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosFullNode.html new file mode 100644 index 000000000..b0c92d1b4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosFullNode.html @@ -0,0 +1,4 @@ +postAptosFullNode | @aptos-labs/ts-sdk - v1.33.1

Function postAptosFullNode

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosIndexer.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosIndexer.html new file mode 100644 index 000000000..62e8c23c7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosIndexer.html @@ -0,0 +1,4 @@ +postAptosIndexer | @aptos-labs/ts-sdk - v1.33.1

Function postAptosIndexer

  • Sends a request to the Aptos indexer with the specified options. +This function allows you to interact with the Aptos indexer and customize the request using various configurations.

    +

    Type Parameters

    • Req extends {}
    • Res extends {}

    Parameters

    Returns Promise<AptosResponse<Req, Res>>

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosPepperService.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosPepperService.html new file mode 100644 index 000000000..1c494e40b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosPepperService.html @@ -0,0 +1,4 @@ +postAptosPepperService | @aptos-labs/ts-sdk - v1.33.1

Function postAptosPepperService

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosProvingService.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosProvingService.html new file mode 100644 index 000000000..689be4614 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/postAptosProvingService.html @@ -0,0 +1,3 @@ +postAptosProvingService | @aptos-labs/ts-sdk - v1.33.1

Function postAptosProvingService

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/request.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/request.html new file mode 100644 index 000000000..89f43f7be --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/request.html @@ -0,0 +1,5 @@ +request | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/sleep.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/sleep.html new file mode 100644 index 000000000..d53b3792e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/sleep.html @@ -0,0 +1,4 @@ +sleep | @aptos-labs/ts-sdk - v1.33.1
  • 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-1.33.1/functions/splitPath.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/splitPath.html new file mode 100644 index 000000000..782ac1151 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/splitPath.html @@ -0,0 +1,2 @@ +splitPath | @aptos-labs/ts-sdk - v1.33.1

Function splitPath

Splits derive path into segments

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/standardizeTypeTags.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/standardizeTypeTags.html new file mode 100644 index 000000000..765ad99ba --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/standardizeTypeTags.html @@ -0,0 +1,4 @@ +standardizeTypeTags | @aptos-labs/ts-sdk - v1.33.1

Function standardizeTypeTags

  • Convert type arguments to only type tags, allowing for string representations of type tags.

    +

    Parameters

    • OptionaltypeArguments: TypeArgument[]

      An optional array of type arguments that may include string representations.

      +

    Returns TypeTag[]

    An array of TypeTag objects derived from the provided type arguments.

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/stringStructTag.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/stringStructTag.html new file mode 100644 index 000000000..2f733010c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/stringStructTag.html @@ -0,0 +1,3 @@ +stringStructTag | @aptos-labs/ts-sdk - v1.33.1

Function stringStructTag

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/functions/throwTypeMismatch.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/throwTypeMismatch.html new file mode 100644 index 000000000..5886d99ed --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/throwTypeMismatch.html @@ -0,0 +1,5 @@ +throwTypeMismatch | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/functions/validateNumberInRange.html b/docs/@aptos-labs/ts-sdk-1.33.1/functions/validateNumberInRange.html new file mode 100644 index 000000000..dda1a2560 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/functions/validateNumberInRange.html @@ -0,0 +1,6 @@ +validateNumberInRange | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/hierarchy.html b/docs/@aptos-labs/ts-sdk-1.33.1/hierarchy.html new file mode 100644 index 000000000..b4dab0f2d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/hierarchy.html @@ -0,0 +1 @@ +@aptos-labs/ts-sdk - v1.33.1

@aptos-labs/ts-sdk - v1.33.1

Class Hierarchy

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/index.html b/docs/@aptos-labs/ts-sdk-1.33.1/index.html new file mode 100644 index 000000000..390b0e12b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/index.html @@ -0,0 +1,53 @@ +@aptos-labs/ts-sdk - v1.33.1

@aptos-labs/ts-sdk - v1.33.1

Typescript SDK for Aptos

License +Discord +NPM Package Version +Node Version +NPM bundle size +NPM Package Downloads

+

The TypeScript SDK allows you to connect, explore, and interact on the Aptos blockchain. You can use it to request data, send transactions, set up test environments, and more!

+

Install with your favorite package manager such as npm, yarn, or pnpm:

+
pnpm install @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" />
+
+ +

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); +
+ +
+
const fund = 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 = await 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
// Read more https://github.com/aptos-labs/aptos-ts-sdk/blob/main/src/api/account.ts#L364
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");
// Derieve an account from private key and address
const account = await 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 transfering 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 import error when you do this

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

It could be 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, checkout out the contributing guide.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/AptosResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/AptosResponse.html new file mode 100644 index 000000000..6dbcef1f8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/AptosResponse.html @@ -0,0 +1,16 @@ +AptosResponse | @aptos-labs/ts-sdk - v1.33.1

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

Properties

config?: any
data: Res
headers: any
request?: Req
status: number
statusText: string
url: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Client.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Client.html new file mode 100644 index 000000000..42a056e2d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Client.html @@ -0,0 +1,4 @@ +Client | @aptos-labs/ts-sdk - v1.33.1

Interface Client

interface Client {
    provider<Req, Res>(requestOptions: ClientRequest<Req>): Promise<ClientResponse<Res>>;
}

Methods

Methods

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ClientRequest.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ClientRequest.html new file mode 100644 index 000000000..31adaa00e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ClientRequest.html @@ -0,0 +1,12 @@ +ClientRequest | @aptos-labs/ts-sdk - v1.33.1

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>;
    method: "GET" | "POST";
    originMethod?: string;
    overrides?: ClientHeadersType & {
        API_KEY?: string;
        WITH_CREDENTIALS?: boolean;
    } & {
        AUTH_TOKEN?: string;
    };
    params?: any;
    url: string;
}

Type Parameters

  • Req

    The type of the request payload.

    +

Properties

body?: Req
contentType?: string
headers?: Record<string, any>
method: "GET" | "POST"
originMethod?: string
overrides?: ClientHeadersType & {
    API_KEY?: string;
    WITH_CREDENTIALS?: boolean;
} & {
    AUTH_TOKEN?: string;
}
params?: any
url: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ClientResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ClientResponse.html new file mode 100644 index 000000000..ba554a325 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ClientResponse.html @@ -0,0 +1,8 @@ +ClientResponse | @aptos-labs/ts-sdk - v1.33.1

Interface ClientResponse<Res>

interface ClientResponse<Res> {
    config?: any;
    data: Res;
    headers?: any;
    request?: any;
    response?: any;
    status: number;
    statusText: string;
}

Type Parameters

  • Res

Properties

config?: any
data: Res
headers?: any
request?: any
response?: any
status: number
statusText: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..8f257d8eb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateAccountFromPrivateKeyArgs.html @@ -0,0 +1,8 @@ +CreateAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.33.1

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: PrivateKey;
}

Properties

legacy?: boolean
privateKey: PrivateKey
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..dfde5fca0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateEd25519AccountFromPrivateKeyArgs.html @@ -0,0 +1,9 @@ +CreateEd25519AccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

legacy
privateKey: Ed25519PrivateKey
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..c327825a8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateEd25519SingleKeyAccountFromPrivateKeyArgs.html @@ -0,0 +1,9 @@ +CreateEd25519SingleKeyAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

legacy
privateKey: Ed25519PrivateKey
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html new file mode 100644 index 000000000..ae801156a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/CreateSingleKeyAccountFromPrivateKeyArgs.html @@ -0,0 +1,9 @@ +CreateSingleKeyAccountFromPrivateKeyArgs | @aptos-labs/ts-sdk - v1.33.1

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: PrivateKey;
}

Properties

legacy
privateKey: PrivateKey
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Deserializable.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Deserializable.html new file mode 100644 index 000000000..2ea994821 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Deserializable.html @@ -0,0 +1,15 @@ +Deserializable | @aptos-labs/ts-sdk - v1.33.1

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.

    +

Methods

Methods

  • 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-1.33.1/interfaces/Ed25519SignerConstructorArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Ed25519SignerConstructorArgs.html new file mode 100644 index 000000000..e71dfd55a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Ed25519SignerConstructorArgs.html @@ -0,0 +1,6 @@ +Ed25519SignerConstructorArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

privateKey: Ed25519PrivateKey
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Ed25519SignerFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Ed25519SignerFromDerivationPathArgs.html new file mode 100644 index 000000000..b912fff7c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/Ed25519SignerFromDerivationPathArgs.html @@ -0,0 +1,6 @@ +Ed25519SignerFromDerivationPathArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

mnemonic: string
path: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/EntryFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/EntryFunctionArgument.html new file mode 100644 index 000000000..f7ca6a638 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/EntryFunctionArgument.html @@ -0,0 +1,19 @@ +EntryFunctionArgument | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implemented by

Methods

  • 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-1.33.1/interfaces/GenerateAccountArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateAccountArgs.html new file mode 100644 index 000000000..84ec2926b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateAccountArgs.html @@ -0,0 +1,6 @@ +GenerateAccountArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

legacy?: boolean
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateEd25519AccountArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateEd25519AccountArgs.html new file mode 100644 index 000000000..332ab1f25 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateEd25519AccountArgs.html @@ -0,0 +1,6 @@ +GenerateEd25519AccountArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

legacy
scheme?: Ed25519
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateEd25519SingleKeyAccountArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateEd25519SingleKeyAccountArgs.html new file mode 100644 index 000000000..9e393cebd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateEd25519SingleKeyAccountArgs.html @@ -0,0 +1,7 @@ +GenerateEd25519SingleKeyAccountArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

legacy
scheme?: Ed25519
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateSingleKeyAccountArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateSingleKeyAccountArgs.html new file mode 100644 index 000000000..c05c03033 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/GenerateSingleKeyAccountArgs.html @@ -0,0 +1,7 @@ +GenerateSingleKeyAccountArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

legacy
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateMultiAgentRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateMultiAgentRawTransactionArgs.html new file mode 100644 index 000000000..b3a44a94b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateMultiAgentRawTransactionArgs.html @@ -0,0 +1,14 @@ +InputGenerateMultiAgentRawTransactionArgs | @aptos-labs/ts-sdk - v1.33.1

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.

+

Properties

aptosConfig: AptosConfig
feePayerAddress?: AccountAddressInput
secondarySignerAddresses: AccountAddressInput[]
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateMultiAgentRawTransactionData.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateMultiAgentRawTransactionData.html new file mode 100644 index 000000000..9e98687c3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateMultiAgentRawTransactionData.html @@ -0,0 +1,12 @@ +InputGenerateMultiAgentRawTransactionData | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

secondarySignerAddresses: AccountAddressInput[]
withFeePayer?: boolean
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateSingleSignerRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateSingleSignerRawTransactionArgs.html new file mode 100644 index 000000000..2c7f1cec3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateSingleSignerRawTransactionArgs.html @@ -0,0 +1,12 @@ +InputGenerateSingleSignerRawTransactionArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

aptosConfig: AptosConfig
feePayerAddress?: AccountAddressInput
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateSingleSignerRawTransactionData.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateSingleSignerRawTransactionData.html new file mode 100644 index 000000000..a638db8b3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputGenerateSingleSignerRawTransactionData.html @@ -0,0 +1,12 @@ +InputGenerateSingleSignerRawTransactionData | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

secondarySignerAddresses?: undefined
withFeePayer?: boolean
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputSubmitTransactionData.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputSubmitTransactionData.html new file mode 100644 index 000000000..5ec21c62f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/InputSubmitTransactionData.html @@ -0,0 +1,10 @@ +InputSubmitTransactionData | @aptos-labs/ts-sdk - v1.33.1

Interface 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.

+

Properties

additionalSignersAuthenticators?: AccountAuthenticator[]
feePayerAuthenticator?: AccountAuthenticator
senderAuthenticator: AccountAuthenticator
transaction: AnyRawTransaction
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/KeylessSigner.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/KeylessSigner.html new file mode 100644 index 000000000..a38d445e5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/KeylessSigner.html @@ -0,0 +1,30 @@ +KeylessSigner | @aptos-labs/ts-sdk - v1.33.1

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;
}

Hierarchy (view full)

Implemented by

Methods

  • 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.

    +

Properties

accountAddress: AccountAddress

Account address associated with the account

+
publicKey: AccountPublicKey

Public key associated with the account

+
signingScheme: SigningScheme

Signing scheme used to sign transactions

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/OrderByArg.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/OrderByArg.html new file mode 100644 index 000000000..78f98b1ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/OrderByArg.html @@ -0,0 +1,2 @@ +OrderByArg | @aptos-labs/ts-sdk - v1.33.1

Interface OrderByArg<T>

interface OrderByArg<T> {
    orderBy?: OrderBy<T>;
}

Type Parameters

  • T extends {}

Properties

Properties

orderBy?: OrderBy<T>
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/PaginationArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/PaginationArgs.html new file mode 100644 index 000000000..a9887e414 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/PaginationArgs.html @@ -0,0 +1,6 @@ +PaginationArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

limit?: number
offset?: AnyNumber
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/PrivateKeyFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/PrivateKeyFromDerivationPathArgs.html new file mode 100644 index 000000000..73c462698 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/PrivateKeyFromDerivationPathArgs.html @@ -0,0 +1,6 @@ +PrivateKeyFromDerivationPathArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

mnemonic: string
path: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ProofFetchEvents.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ProofFetchEvents.html new file mode 100644 index 000000000..47dc7b513 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ProofFetchEvents.html @@ -0,0 +1,2 @@ +ProofFetchEvents | @aptos-labs/ts-sdk - v1.33.1

Interface ProofFetchEvents

interface ProofFetchEvents {
    proofFetchFinish: ((status: ProofFetchStatus) => void);
}

Properties

Properties

proofFetchFinish: ((status: ProofFetchStatus) => void)
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ScriptFunctionArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ScriptFunctionArgument.html new file mode 100644 index 000000000..28aebe27e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/ScriptFunctionArgument.html @@ -0,0 +1,10 @@ +ScriptFunctionArgument | @aptos-labs/ts-sdk - v1.33.1

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 full)

Methods

  • Serialize an argument to BCS-serialized bytes as a type aware byte sequence. +The byte sequence contains an enum variant index followed by the BCS-serialized +bytes for a typed argument.

    +

    Parameters

    Returns void

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/SingleKeySignerConstructorArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/SingleKeySignerConstructorArgs.html new file mode 100644 index 000000000..a6c4f9ce7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/SingleKeySignerConstructorArgs.html @@ -0,0 +1,6 @@ +SingleKeySignerConstructorArgs | @aptos-labs/ts-sdk - v1.33.1

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: PrivateKey;
}

Properties

Properties

privateKey: PrivateKey
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/SingleKeySignerGenerateArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/SingleKeySignerGenerateArgs.html new file mode 100644 index 000000000..7a995cee0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/SingleKeySignerGenerateArgs.html @@ -0,0 +1,4 @@ +SingleKeySignerGenerateArgs | @aptos-labs/ts-sdk - v1.33.1

Interface SingleKeySignerGenerateArgs

Arguments for generating a single key signer.

+

The signing scheme to be used.

+
interface SingleKeySignerGenerateArgs {
    scheme?: SigningSchemeInput;
}

Properties

Properties

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TokenStandardArg.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TokenStandardArg.html new file mode 100644 index 000000000..671796694 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TokenStandardArg.html @@ -0,0 +1,4 @@ +TokenStandardArg | @aptos-labs/ts-sdk - v1.33.1

Interface TokenStandardArg

Represents the arguments for specifying a token standard.

+

Optional standard of the token.

+
interface TokenStandardArg {
    tokenStandard?: TokenStandard;
}

Properties

Properties

tokenStandard?: TokenStandard
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TransactionArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TransactionArgument.html new file mode 100644 index 000000000..d1340a7a4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TransactionArgument.html @@ -0,0 +1,23 @@ +TransactionArgument | @aptos-labs/ts-sdk - v1.33.1

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 full)

Implemented by

Methods

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TransactionWorkerEvents.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TransactionWorkerEvents.html new file mode 100644 index 000000000..d8c6795ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/TransactionWorkerEvents.html @@ -0,0 +1,12 @@ +TransactionWorkerEvents | @aptos-labs/ts-sdk - v1.33.1

Interface TransactionWorkerEvents

Defines the events emitted by the transaction worker during various stages of transaction processing. * +transactionSent - Emitted when a transaction is successfully sent. +transactionSendFailed - Emitted when sending a transaction fails. +transactionExecuted - Emitted when a transaction is successfully executed. +transactionExecutionFailed - Emitted when executing a transaction fails. +executionFinish - Emitted when the execution process is finished.

+
interface TransactionWorkerEvents {
    executionFinish: ((data: ExecutionFinishEventData) => void);
    transactionExecuted: ((data: SuccessEventData) => void);
    transactionExecutionFailed: ((data: FailureEventData) => void);
    transactionSendFailed: ((data: FailureEventData) => void);
    transactionSent: ((data: SuccessEventData) => void);
}

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-1.33.1/interfaces/VerifyEd25519SignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifyEd25519SignatureArgs.html new file mode 100644 index 000000000..980e494d7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifyEd25519SignatureArgs.html @@ -0,0 +1,6 @@ +VerifyEd25519SignatureArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

message: HexInput
signature: Ed25519Signature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifyMultiKeySignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifyMultiKeySignatureArgs.html new file mode 100644 index 000000000..e1417e3fe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifyMultiKeySignatureArgs.html @@ -0,0 +1,6 @@ +VerifyMultiKeySignatureArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

message: HexInput
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifySignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifySignatureArgs.html new file mode 100644 index 000000000..ebc544bcc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifySignatureArgs.html @@ -0,0 +1,6 @@ +VerifySignatureArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

message: HexInput
signature: Signature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifySingleKeySignatureArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifySingleKeySignatureArgs.html new file mode 100644 index 000000000..44d7f3941 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/VerifySingleKeySignatureArgs.html @@ -0,0 +1,6 @@ +VerifySingleKeySignatureArgs | @aptos-labs/ts-sdk - v1.33.1

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;
}

Properties

Properties

message: HexInput
signature: AnySignature
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/WhereArg.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/WhereArg.html new file mode 100644 index 000000000..38ce5b638 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/WhereArg.html @@ -0,0 +1,2 @@ +WhereArg | @aptos-labs/ts-sdk - v1.33.1

Interface WhereArg<T>

interface WhereArg<T> {
    where?: T;
}

Type Parameters

  • T extends {}

Properties

Properties

where?: T
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.CallSite.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.CallSite.html new file mode 100644 index 000000000..a47efe0b7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.CallSite.html @@ -0,0 +1,48 @@ +CallSite | @aptos-labs/ts-sdk - v1.33.1
interface CallSite {
    getColumnNumber(): null | number;
    getEnclosingColumnNumber(): number;
    getEnclosingLineNumber(): number;
    getEvalOrigin(): undefined | string;
    getFileName(): undefined | string;
    getFunction(): undefined | Function;
    getFunctionName(): null | string;
    getLineNumber(): null | number;
    getMethodName(): null | string;
    getPosition(): number;
    getPromiseIndex(): null | number;
    getScriptHash(): string;
    getScriptNameOrSourceURL(): string;
    getThis(): unknown;
    getTypeName(): null | string;
    isAsync(): boolean;
    isConstructor(): boolean;
    isEval(): boolean;
    isNative(): boolean;
    isPromiseAll(): boolean;
    isToplevel(): boolean;
    toString(): string;
}

Methods

  • Current column number [if this function was defined in a script]

    +

    Returns null | number

  • Returns number

  • Returns number

  • A call site object representing the location where eval was called +[if this function was created using a call to eval]

    +

    Returns undefined | string

  • Name of the script [if this function was defined in a script]

    +

    Returns undefined | string

  • Current function

    +

    Returns undefined | Function

  • Name of the current function, typically its name property. +If a name property is not available an attempt will be made to try +to infer a name from the function's context.

    +

    Returns null | string

  • Current line number [if this function was defined in a script]

    +

    Returns null | number

  • Name of the property [of "this" or one of its prototypes] that holds +the current function

    +

    Returns null | string

  • Returns number

  • returns the index of the promise element that was followed in +Promise.all() or Promise.any() for async stack traces, or null +if the CallSite is not an async

    +

    Returns null | number

  • Returns string

  • Returns string

  • Value of "this"

    +

    Returns unknown

  • Type of "this" as a string. +This is the name of the function stored in the constructor field of +"this", if available. Otherwise the object's [[Class]] internal +property.

    +

    Returns null | string

  • is this an async call (i.e. await, Promise.all(), or Promise.any())?

    +

    Returns boolean

  • Is this a constructor call?

    +

    Returns boolean

  • Does this call take place in code defined by a call to eval?

    +

    Returns boolean

  • Is this call in native V8 code?

    +

    Returns boolean

  • is this an async call to Promise.all()?

    +

    Returns boolean

  • Is this a toplevel invocation, that is, is "this" the global object?

    +

    Returns boolean

  • Returns string

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.CreateCollectionOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.CreateCollectionOptions.html new file mode 100644 index 000000000..07eb0b728 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.CreateCollectionOptions.html @@ -0,0 +1,27 @@ +CreateCollectionOptions | @aptos-labs/ts-sdk - v1.33.1

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;
}

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-1.33.1/interfaces/_internal_.Error.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.Error.html new file mode 100644 index 000000000..9d4565f73 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.Error.html @@ -0,0 +1,4 @@ +Error | @aptos-labs/ts-sdk - v1.33.1
interface Error {
    message: string;
    name: string;
    stack?: string;
}

Hierarchy (view full)

Properties

Properties

message: string
name: string
stack?: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.EventEmitter.EventEmitterStatic.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.EventEmitter.EventEmitterStatic.html new file mode 100644 index 000000000..55a52678f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.EventEmitter.EventEmitterStatic.html @@ -0,0 +1,2 @@ +EventEmitterStatic | @aptos-labs/ts-sdk - v1.33.1
interface EventEmitterStatic {
    new EventEmitterStaticnew <EventTypes, Context>(): EventEmitter<EventTypes, Context>;
}

Constructors

Constructors

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.EventEmitter.ListenerFn.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.EventEmitter.ListenerFn.html new file mode 100644 index 000000000..734ab8ed7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.EventEmitter.ListenerFn.html @@ -0,0 +1 @@ +ListenerFn | @aptos-labs/ts-sdk - v1.33.1

Type Parameters

  • Args extends any[] = any[]
  • Parameters

    Returns void

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountDomainsArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountDomainsArgs.html new file mode 100644 index 000000000..673463412 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountDomainsArgs.html @@ -0,0 +1,5 @@ +GetAccountDomainsArgs | @aptos-labs/ts-sdk - v1.33.1

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<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }> & WhereArg<CurrentAptosNamesBoolExp>;
}

Hierarchy (view full)

Properties

accountAddress: AccountAddressInput
options?: PaginationArgs & OrderByArg<{
    domain?: null | string;
    domain_expiration_timestamp?: any;
    expiration_timestamp?: any;
    is_primary?: null | boolean;
    owner_address?: null | string;
    registered_address?: null | string;
    subdomain?: null | string;
    subdomain_expiration_policy?: any;
    token_standard?: null | string;
}> & WhereArg<CurrentAptosNamesBoolExp>
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountNamesArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountNamesArgs.html new file mode 100644 index 000000000..7c177ce07 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountNamesArgs.html @@ -0,0 +1,5 @@ +GetAccountNamesArgs | @aptos-labs/ts-sdk - v1.33.1

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<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }> & WhereArg<CurrentAptosNamesBoolExp>;
}

Hierarchy (view full)

Properties

accountAddress: AccountAddressInput
options?: PaginationArgs & OrderByArg<{
    domain?: null | string;
    domain_expiration_timestamp?: any;
    expiration_timestamp?: any;
    is_primary?: null | boolean;
    owner_address?: null | string;
    registered_address?: null | string;
    subdomain?: null | string;
    subdomain_expiration_policy?: any;
    token_standard?: null | string;
}> & WhereArg<CurrentAptosNamesBoolExp>
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountSubdomainsArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountSubdomainsArgs.html new file mode 100644 index 000000000..8ee09448a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetAccountSubdomainsArgs.html @@ -0,0 +1,5 @@ +GetAccountSubdomainsArgs | @aptos-labs/ts-sdk - v1.33.1

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<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }> & WhereArg<CurrentAptosNamesBoolExp>;
}

Hierarchy (view full)

Properties

accountAddress: AccountAddressInput
options?: PaginationArgs & OrderByArg<{
    domain?: null | string;
    domain_expiration_timestamp?: any;
    expiration_timestamp?: any;
    is_primary?: null | boolean;
    owner_address?: null | string;
    registered_address?: null | string;
    subdomain?: null | string;
    subdomain_expiration_policy?: any;
    token_standard?: null | string;
}> & WhereArg<CurrentAptosNamesBoolExp>
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetDomainSubdomainsArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetDomainSubdomainsArgs.html new file mode 100644 index 000000000..03e62f49c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.GetDomainSubdomainsArgs.html @@ -0,0 +1,5 @@ +GetDomainSubdomainsArgs | @aptos-labs/ts-sdk - v1.33.1

Arguments for retrieving subdomains associated with a specific domain.

+

The domain for which to fetch subdomains.

+
interface GetDomainSubdomainsArgs {
    domain: string;
    options?: PaginationArgs & OrderByArg<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }> & WhereArg<CurrentAptosNamesBoolExp>;
}

Hierarchy (view full)

Properties

Properties

domain: string
options?: PaginationArgs & OrderByArg<{
    domain?: null | string;
    domain_expiration_timestamp?: any;
    expiration_timestamp?: any;
    is_primary?: null | boolean;
    owner_address?: null | string;
    registered_address?: null | string;
    subdomain?: null | string;
    subdomain_expiration_policy?: any;
    token_standard?: null | string;
}> & WhereArg<CurrentAptosNamesBoolExp>
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.JwtHeader.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.JwtHeader.html new file mode 100644 index 000000000..6e138512a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.JwtHeader.html @@ -0,0 +1,2 @@ +JwtHeader | @aptos-labs/ts-sdk - v1.33.1
interface JwtHeader {
    kid: string;
}

Properties

kid +

Properties

kid: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.PendingDequeue.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.PendingDequeue.html new file mode 100644 index 000000000..346312c87 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.PendingDequeue.html @@ -0,0 +1,8 @@ +PendingDequeue | @aptos-labs/ts-sdk - v1.33.1

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

Properties

Properties

reject: ((reason?: AsyncQueueCancelledError) => void)
resolve: ((value: T) => void)
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.PromiseFulfilledResult.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.PromiseFulfilledResult.html new file mode 100644 index 000000000..3953484ea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.PromiseFulfilledResult.html @@ -0,0 +1,3 @@ +PromiseFulfilledResult | @aptos-labs/ts-sdk - v1.33.1

Interface PromiseFulfilledResult<T>

interface PromiseFulfilledResult<T> {
    status: "fulfilled";
    value: T;
}

Type Parameters

  • T

Properties

Properties

status
value: T
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.QueryNamesOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.QueryNamesOptions.html new file mode 100644 index 000000000..e6f900c51 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.QueryNamesOptions.html @@ -0,0 +1,4 @@ +QueryNamesOptions | @aptos-labs/ts-sdk - v1.33.1

Options for querying names, including pagination, ordering, and filtering criteria.

+

Pagination and filtering options for the query.

+
interface QueryNamesOptions {
    options?: PaginationArgs & OrderByArg<{
        domain?: null | string;
        domain_expiration_timestamp?: any;
        expiration_timestamp?: any;
        is_primary?: null | boolean;
        owner_address?: null | string;
        registered_address?: null | string;
        subdomain?: null | string;
        subdomain_expiration_policy?: any;
        token_standard?: null | string;
    }> & WhereArg<CurrentAptosNamesBoolExp>;
}

Hierarchy (view full)

Properties

Properties

options?: PaginationArgs & OrderByArg<{
    domain?: null | string;
    domain_expiration_timestamp?: any;
    expiration_timestamp?: any;
    is_primary?: null | boolean;
    owner_address?: null | string;
    registered_address?: null | string;
    subdomain?: null | string;
    subdomain_expiration_policy?: any;
    token_standard?: null | string;
}> & WhereArg<CurrentAptosNamesBoolExp>
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.RegisterNameParameters.html b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.RegisterNameParameters.html new file mode 100644 index 000000000..637ca7e7d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/interfaces/_internal_.RegisterNameParameters.html @@ -0,0 +1,14 @@ +RegisterNameParameters | @aptos-labs/ts-sdk - v1.33.1

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.

+
interface RegisterNameParameters {
    aptosConfig: AptosConfig;
    expiration: {
        policy: "domain";
        years?: 1;
    } | {
        policy: "subdomain:follow-domain";
    } | {
        expirationDate: number;
        policy: "subdomain:independent";
    };
    name: string;
    options?: InputGenerateTransactionOptions;
    sender: Account;
    targetAddress?: AccountAddressInput;
    toAddress?: AccountAddressInput;
    transferable?: boolean;
}

Properties

aptosConfig: AptosConfig
expiration: {
    policy: "domain";
    years?: 1;
} | {
    policy: "subdomain:follow-domain";
} | {
    expirationDate: number;
    policy: "subdomain:independent";
}
name: string
sender: Account
targetAddress?: AccountAddressInput
transferable?: boolean
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/media/README.md b/docs/@aptos-labs/ts-sdk-1.33.1/media/README.md new file mode 100644 index 000000000..8268be293 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/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-1.33.1/modules.html b/docs/@aptos-labs/ts-sdk-1.33.1/modules.html new file mode 100644 index 000000000..d9944d31c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/modules.html @@ -0,0 +1,470 @@ +@aptos-labs/ts-sdk - v1.33.1

@aptos-labs/ts-sdk - v1.33.1

Index

Classes

AbstractKeylessAccount +Account +AccountAddress +AccountAuthenticator +AccountAuthenticatorEd25519 +AccountAuthenticatorMultiEd25519 +AccountAuthenticatorMultiKey +AccountAuthenticatorNoAccountAuthenticator +AccountAuthenticatorSingleKey +AccountPublicKey +AccountSequenceNumber +AnyPublicKey +AnySignature +Aptos +AptosApiError +AptosConfig +AuthenticationKey +Bool +ChainId +Deserializer +Ed25519Account +Ed25519PrivateKey +Ed25519PublicKey +Ed25519Signature +EntryFunction +EntryFunctionBytes +EphemeralCertificate +EphemeralKeyPair +EphemeralPublicKey +EphemeralSignature +FederatedKeylessAccount +FederatedKeylessPublicKey +FeePayerRawTransaction +FixedBytes +Groth16VerificationKey +Groth16Zkp +Hex +Identifier +KeylessAccount +KeylessConfiguration +KeylessError +KeylessPublicKey +KeylessSignature +ModuleId +MoveJWK +MoveOption +MoveString +MoveVector +MultiAgentRawTransaction +MultiAgentTransaction +MultiEd25519PublicKey +MultiEd25519Signature +MultiKey +MultiKeyAccount +MultiKeySignature +MultiSig +MultiSigTransactionPayload +ParsingError +PrivateKey +PublicKey +RawTransaction +RawTransactionWithData +RotationProofChallenge +Script +Secp256k1PrivateKey +Secp256k1PublicKey +Secp256k1Signature +Serializable +Serialized +Serializer +Signature +SignedTransaction +SimpleTransaction +SingleKeyAccount +StructTag +TransactionAndProof +TransactionAuthenticator +TransactionAuthenticatorEd25519 +TransactionAuthenticatorFeePayer +TransactionAuthenticatorMultiAgent +TransactionAuthenticatorMultiEd25519 +TransactionAuthenticatorSingleSender +TransactionPayload +TransactionPayloadEntryFunction +TransactionPayloadMultiSig +TransactionPayloadScript +TransactionWorker +TypeTag +TypeTagAddress +TypeTagBool +TypeTagGeneric +TypeTagParserError +TypeTagReference +TypeTagSigner +TypeTagStruct +TypeTagU128 +TypeTagU16 +TypeTagU256 +TypeTagU32 +TypeTagU64 +TypeTagU8 +TypeTagVector +U128 +U16 +U256 +U32 +U64 +U8 +ZeroKnowledgeSig +ZkProof +

Enumerations

Events

Functions

aptosCoinStructTag +aptosRequest +base64UrlDecode +bigIntToBytesLE +buildTransaction +bytesToBigIntLE +checkOrConvertArgument +CKDPriv +convertAmountFromHumanReadableToOnChain +convertAmountFromOnChainToHumanReadable +convertArgument +convertNumber +createObjectAddress +createResourceAddress +createTokenAddress +deriveKey +deriveTransactionType +deserializeFromScriptArgument +ensureBoolean +fetchEntryFunctionAbi +fetchFunctionAbi +fetchViewFunctionAbi +findFirstNonSignerArg +floorToWholeHour +generateRawTransaction +generateSignedTransaction +generateSignedTransactionForSimulation +generateSigningMessage +generateSigningMessageForSerializable +generateSigningMessageForTransaction +generateTransactionPayload +generateTransactionPayloadWithABI +generateUserTransactionHash +generateViewFunctionPayload +generateViewFunctionPayloadWithABI +get +getAptosFullNode +getAptosPepperService +getAuthenticatorForSimulation +getErrorMessage +getFunctionParts +getIssAudAndUidVal +getKeylessConfig +getKeylessJWKs +hashStrToField +hashValues +hexToAsciiString +isBcsAddress +isBcsBool +isBcsFixedBytes +isBcsString +isBcsU128 +isBcsU16 +isBcsU256 +isBcsU32 +isBcsU64 +isBcsU8 +isBlockEpilogueTransactionResponse +isBlockMetadataTransactionResponse +isBool +isCanonicalEd25519Signature +isEd25519Signature +isEmptyOption +isEncodedEntryFunctionArgument +isEncodedStruct +isFeePayerSignature +isGenesisTransactionResponse +isKeylessSigner +isLargeNumber +isMultiAgentSignature +isMultiEd25519Signature +isNumber +isPendingTransactionResponse +isScriptDataInput +isSecp256k1Signature +isStateCheckpointTransactionResponse +isString +isUserTransactionResponse +isValidatorTransactionResponse +isValidBIP44Path +isValidHardenedPath +mnemonicToSeed +normalizeBundle +nowInSeconds +objectStructTag +optionStructTag +outOfRangeErrorMessage +padAndPackBytesWithLen +paginateWithCursor +parseEncodedStruct +parseJwtHeader +parseTypeTag +poseidonHash +post +postAptosFaucet +postAptosFullNode +postAptosIndexer +postAptosPepperService +postAptosProvingService +request +sleep +splitPath +standardizeTypeTags +stringStructTag +throwTypeMismatch +validateNumberInRange +

Interfaces

Modules

Type Aliases

AccountAddressInput +AccountData +AccountSignature +AnyNumber +AnyRawTransaction +AnyRawTransactionInstance +AnyTransactionPayloadInstance +AptosRequest +AptosSettings +AuthenticationKeyScheme +Block +BlockEndInfo +BlockEpilogueTransactionResponse +BlockMetadataTransactionResponse +ClientConfig +ClientHeadersType +CommittedTransactionResponse +DecodedTableData +DeletedTableData +DerivedKeys +DeserializableClass +DirectWriteSet +EntryFunctionABI +EntryFunctionArgumentTypes +EntryFunctionPayloadResponse +Event +EventGuid +ExecutionFinishEventData +FailureEventData +FaucetConfig +FullNodeConfig +FunctionABI +GasEstimation +GenerateAccount +GenerateAccountWithEd25519 +GenerateAccountWithSingleSignerSecp256k1Key +GenesisPayload +GenesisTransactionResponse +GetAccountCoinsDataResponse +GetAccountCollectionsWithOwnedTokenResponse +GetAccountOwnedTokensFromCollectionResponse +GetAccountOwnedTokensQueryResponse +GetANSNameResponse +GetAptosRequestOptions +GetChainTopUserTransactionsResponse +GetCollectionDataResponse +GetCurrentFungibleAssetBalancesResponse +GetCurrentTokenOwnershipResponse +GetDelegatedStakingActivitiesResponse +GetEventsResponse +GetFungibleAssetActivitiesResponse +GetFungibleAssetMetadataResponse +GetNumberOfDelegatorsResponse +GetObjectDataQueryResponse +GetOwnedTokensResponse +GetProcessorStatusResponse +GetRequestOptions +GetTableItemsDataResponse +GetTableItemsMetadataResponse +GetTokenActivityResponse +GetTokenDataResponse +GraphqlQuery +HexInput +IndexerConfig +InputEntryFunctionData +InputEntryFunctionDataWithABI +InputEntryFunctionDataWithRemoteABI +InputGenerateRawTransactionArgs +InputGenerateTransactionData +InputGenerateTransactionOptions +InputGenerateTransactionPayloadData +InputGenerateTransactionPayloadDataWithABI +InputGenerateTransactionPayloadDataWithRemoteABI +InputMultiSigData +InputMultiSigDataWithABI +InputMultiSigDataWithRemoteABI +InputScriptData +InputSimulateTransactionData +InputSimulateTransactionOptions +InputViewFunctionData +InputViewFunctionDataWithABI +InputViewFunctionDataWithRemoteABI +InputViewFunctionJsonData +LedgerInfo +LedgerVersionArg +MoveAddressType +MoveFunction +MoveFunctionGenericTypeParam +MoveFunctionId +MoveModule +MoveModuleBytecode +MoveModuleId +MoveObjectType +MoveOptionType +MoveResource +MoveScriptBytecode +MoveStruct +MoveStructField +MoveStructId +MoveStructType +MoveType +MoveUint128Type +MoveUint16Type +MoveUint256Type +MoveUint32Type +MoveUint64Type +MoveUint8Type +MoveValue +MultisigPayloadResponse +OrderBy +OrderByValue +ParsingResult +PendingTransactionResponse +PostAptosRequestOptions +PostRequestOptions +ProofFetchCallback +ProofFetchFailure +ProofFetchStatus +ProofFetchSuccess +ScriptFunctionArgumentTypes +ScriptPayloadResponse +ScriptWriteSet +SimpleEntryFunctionArgumentTypes +SingleKeySignerFromDerivationPathArgs +StateCheckpointTransactionResponse +SuccessEventData +TableItemRequest +TokenStandard +TransactionEd25519Signature +TransactionFeePayerSignature +TransactionMultiAgentSignature +TransactionMultiEd25519Signature +TransactionPayloadResponse +TransactionResponse +TransactionSecp256k1Signature +TransactionSignature +TypeArgument +Uint128 +Uint16 +Uint256 +Uint32 +Uint64 +Uint8 +UserTransactionResponse +ValidatorTransactionResponse +ViewFunctionABI +ViewFunctionJsonPayload +WaitForTransactionOptions +WriteSet +WriteSetChange +WriteSetChangeDeleteModule +WriteSetChangeDeleteResource +WriteSetChangeDeleteTableItem +WriteSetChangeWriteModule +WriteSetChangeWriteResource +WriteSetChangeWriteTableItem +

Variables

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/modules/_internal_.EventEmitter.html b/docs/@aptos-labs/ts-sdk-1.33.1/modules/_internal_.EventEmitter.html new file mode 100644 index 000000000..b460544cf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/modules/_internal_.EventEmitter.html @@ -0,0 +1,9 @@ +EventEmitter | @aptos-labs/ts-sdk - v1.33.1

Index

Interfaces

Type Aliases

Variables

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/modules/_internal_.html b/docs/@aptos-labs/ts-sdk-1.33.1/modules/_internal_.html new file mode 100644 index 000000000..c1f58b203 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/modules/_internal_.html @@ -0,0 +1,95 @@ +<internal> | @aptos-labs/ts-sdk - v1.33.1

Classes

Enumerations

Interfaces

Namespaces

References

Type Aliases

Variables

References

Re-exports ArgumentMap
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountAddressInput.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountAddressInput.html new file mode 100644 index 000000000..fe2819f70 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountAddressInput.html @@ -0,0 +1,2 @@ +AccountAddressInput | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/AccountData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountData.html new file mode 100644 index 000000000..46a47fb16 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountData.html @@ -0,0 +1,2 @@ +AccountData | @aptos-labs/ts-sdk - v1.33.1

Type Alias AccountData

AccountData: {
    authentication_key: string;
    sequence_number: string;
}

The data associated with an account, including its sequence number.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountSignature.html new file mode 100644 index 000000000..5761702fb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AccountSignature.html @@ -0,0 +1,2 @@ +AccountSignature | @aptos-labs/ts-sdk - v1.33.1

Type Alias AccountSignature

The union of all single account signatures, including Ed25519, Secp256k1, and MultiEd25519 signatures.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyNumber.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyNumber.html new file mode 100644 index 000000000..ba4e5296d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyNumber.html @@ -0,0 +1,2 @@ +AnyNumber | @aptos-labs/ts-sdk - v1.33.1

Type Alias AnyNumber

AnyNumber: number | bigint

A number or a bigint value.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyRawTransaction.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyRawTransaction.html new file mode 100644 index 000000000..41cc9d25e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyRawTransaction.html @@ -0,0 +1,2 @@ +AnyRawTransaction | @aptos-labs/ts-sdk - v1.33.1

Type Alias AnyRawTransaction

Unified type that holds all the return interfaces when generating different transaction types

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyRawTransactionInstance.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyRawTransactionInstance.html new file mode 100644 index 000000000..0459fe1f2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyRawTransactionInstance.html @@ -0,0 +1,2 @@ +AnyRawTransactionInstance | @aptos-labs/ts-sdk - v1.33.1

Type Alias AnyRawTransactionInstance

Holds all return interfaces for generating different transaction types.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyTransactionPayloadInstance.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyTransactionPayloadInstance.html new file mode 100644 index 000000000..8a458ff48 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AnyTransactionPayloadInstance.html @@ -0,0 +1,3 @@ +AnyTransactionPayloadInstance | @aptos-labs/ts-sdk - v1.33.1

Type Alias AnyTransactionPayloadInstance

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-1.33.1/types/AptosRequest.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AptosRequest.html new file mode 100644 index 000000000..60bf95f3a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AptosRequest.html @@ -0,0 +1,11 @@ +AptosRequest | @aptos-labs/ts-sdk - v1.33.1

Type Alias AptosRequest

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;
}

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

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AptosSettings.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AptosSettings.html new file mode 100644 index 000000000..f7e96ec4a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AptosSettings.html @@ -0,0 +1,2 @@ +AptosSettings | @aptos-labs/ts-sdk - v1.33.1

Type Alias AptosSettings

AptosSettings: {
    client?: Client;
    clientConfig?: ClientConfig;
    faucet?: string;
    faucetConfig?: FaucetConfig;
    fullnode?: string;
    fullnodeConfig?: FullNodeConfig;
    indexer?: string;
    indexerConfig?: IndexerConfig;
    network?: Network;
    pepper?: string;
    prover?: string;
}

Configuration options for initializing the SDK, allowing customization of its behavior and interaction with the Aptos network.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/AuthenticationKeyScheme.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/AuthenticationKeyScheme.html new file mode 100644 index 000000000..7db8b4688 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/AuthenticationKeyScheme.html @@ -0,0 +1,2 @@ +AuthenticationKeyScheme | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/Block.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Block.html new file mode 100644 index 000000000..6d0895476 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Block.html @@ -0,0 +1,3 @@ +Block | @aptos-labs/ts-sdk - v1.33.1

Type Alias Block

Block: {
    block_hash: string;
    block_height: string;
    block_timestamp: string;
    first_version: string;
    last_version: string;
    transactions?: TransactionResponse[];
}

A Block type

+

Type declaration

  • block_hash: string
  • block_height: string
  • block_timestamp: string
  • first_version: string
  • last_version: string
  • Optionaltransactions?: TransactionResponse[]

    The transactions in the block in sequential order

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockEndInfo.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockEndInfo.html new file mode 100644 index 000000000..493cbb4ce --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockEndInfo.html @@ -0,0 +1,2 @@ +BlockEndInfo | @aptos-labs/ts-sdk - v1.33.1

Type Alias BlockEndInfo

BlockEndInfo: {
    block_approx_output_size: number;
    block_effective_block_gas_units: number;
    block_gas_limit_reached: boolean;
    block_output_limit_reached: boolean;
}

Describes the gas state of the block, indicating whether the block gas limit has been reached.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockEpilogueTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockEpilogueTransactionResponse.html new file mode 100644 index 000000000..1ca1244e0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockEpilogueTransactionResponse.html @@ -0,0 +1,5 @@ +BlockEpilogueTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias BlockEpilogueTransactionResponse

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;
}

A transaction executed at the end of a block that tracks data from the entire block.

+

Type declaration

  • 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
  • type: BlockEpilogue
  • 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-1.33.1/types/BlockMetadataTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockMetadataTransactionResponse.html new file mode 100644 index 000000000..79e5f2c9f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/BlockMetadataTransactionResponse.html @@ -0,0 +1,8 @@ +BlockMetadataTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias BlockMetadataTransactionResponse

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;
}

The structure representing a blockchain block with its height.

+

Type declaration

  • 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
  • type: BlockMetadata
  • 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-1.33.1/types/ClientConfig.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ClientConfig.html new file mode 100644 index 000000000..1dacd6c4e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ClientConfig.html @@ -0,0 +1,2 @@ +ClientConfig | @aptos-labs/ts-sdk - v1.33.1

Type Alias ClientConfig

ClientConfig: ClientHeadersType & {
    API_KEY?: string;
    WITH_CREDENTIALS?: boolean;
}

A configuration object for requests to the server, including API key, extra headers, and cookie handling options.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ClientHeadersType.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ClientHeadersType.html new file mode 100644 index 000000000..731d14b13 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ClientHeadersType.html @@ -0,0 +1,2 @@ +ClientHeadersType | @aptos-labs/ts-sdk - v1.33.1

Type Alias ClientHeadersType

ClientHeadersType: {
    HEADERS?: Record<string, string | number | boolean>;
}

General type definition for client headers.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/CommittedTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/CommittedTransactionResponse.html new file mode 100644 index 000000000..f8a621d00 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/CommittedTransactionResponse.html @@ -0,0 +1,2 @@ +CommittedTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/DecodedTableData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/DecodedTableData.html new file mode 100644 index 000000000..20d9bc294 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/DecodedTableData.html @@ -0,0 +1,6 @@ +DecodedTableData | @aptos-labs/ts-sdk - v1.33.1

Type Alias DecodedTableData

DecodedTableData: {
    key: any;
    key_type: string;
    value: any;
    value_type: string;
}

The decoded data for a table, including its key in JSON format.

+

Type declaration

  • 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-1.33.1/types/DeletedTableData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/DeletedTableData.html new file mode 100644 index 000000000..e9b481f55 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/DeletedTableData.html @@ -0,0 +1,4 @@ +DeletedTableData | @aptos-labs/ts-sdk - v1.33.1

Type Alias DeletedTableData

DeletedTableData: {
    key: any;
    key_type: string;
}

Data for a deleted table entry.

+

Type declaration

  • key: any

    Deleted key

    +
  • key_type: string

    Deleted key type

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/DerivedKeys.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/DerivedKeys.html new file mode 100644 index 000000000..cb5cc53ff --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/DerivedKeys.html @@ -0,0 +1,2 @@ +DerivedKeys | @aptos-labs/ts-sdk - v1.33.1

Type Alias DerivedKeys

DerivedKeys: {
    chainCode: Uint8Array;
    key: Uint8Array;
}

Contains the derived cryptographic key as a Uint8Array.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/DeserializableClass.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/DeserializableClass.html new file mode 100644 index 000000000..67b359ce4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/DeserializableClass.html @@ -0,0 +1,4 @@ +DeserializableClass | @aptos-labs/ts-sdk - v1.33.1

Type Alias DeserializableClass<T>

DeserializableClass<T>: {
    deserialize(deserializer: Deserializer): T;
}

Type Parameters

Type declaration

  • deserialize:function
    • 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-1.33.1/types/DirectWriteSet.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/DirectWriteSet.html new file mode 100644 index 000000000..fb0ba8278 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/DirectWriteSet.html @@ -0,0 +1,2 @@ +DirectWriteSet | @aptos-labs/ts-sdk - v1.33.1

Type Alias DirectWriteSet

DirectWriteSet: {
    changes: WriteSetChange[];
    events: Event[];
    type: string;
}

The set of direct write operations, identified by a type string.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/EntryFunctionABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/EntryFunctionABI.html new file mode 100644 index 000000000..75684d327 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/EntryFunctionABI.html @@ -0,0 +1,2 @@ +EntryFunctionABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/EntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/EntryFunctionArgumentTypes.html new file mode 100644 index 000000000..e6b86c1ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/EntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +EntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.33.1

Type Alias EntryFunctionArgumentTypes

EntryFunctionArgumentTypes:
    | Bool
    | U8
    | U16
    | U32
    | U64
    | U128
    | U256
    | 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-1.33.1/types/EntryFunctionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/EntryFunctionPayloadResponse.html new file mode 100644 index 000000000..cac09f889 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/EntryFunctionPayloadResponse.html @@ -0,0 +1,4 @@ +EntryFunctionPayloadResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias EntryFunctionPayloadResponse

EntryFunctionPayloadResponse: {
    arguments: any[];
    function: MoveFunctionId;
    type: string;
    type_arguments: string[];
}

The response payload for an entry function, containing the type of the entry.

+

Type declaration

  • 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-1.33.1/types/Event.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Event.html new file mode 100644 index 000000000..d00e20b71 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Event.html @@ -0,0 +1,2 @@ +Event | @aptos-labs/ts-sdk - v1.33.1

Type Alias Event

Event: {
    data: any;
    guid: EventGuid;
    sequence_number: string;
    type: string;
}

Type declaration

  • data: any

    The JSON representation of the event

    +
  • guid: EventGuid
  • sequence_number: string
  • type: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/EventGuid.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/EventGuid.html new file mode 100644 index 000000000..11a04d97f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/EventGuid.html @@ -0,0 +1,2 @@ +EventGuid | @aptos-labs/ts-sdk - v1.33.1

Type Alias EventGuid

EventGuid: {
    account_address: string;
    creation_number: string;
}

The structure for an event, identified by a unique GUID.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ExecutionFinishEventData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ExecutionFinishEventData.html new file mode 100644 index 000000000..17e51acf9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ExecutionFinishEventData.html @@ -0,0 +1,2 @@ +ExecutionFinishEventData | @aptos-labs/ts-sdk - v1.33.1

Type Alias ExecutionFinishEventData

ExecutionFinishEventData: {
    message: string;
}

The payload for when the worker has finished its job.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/FailureEventData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/FailureEventData.html new file mode 100644 index 000000000..697d31f1a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/FailureEventData.html @@ -0,0 +1,2 @@ +FailureEventData | @aptos-labs/ts-sdk - v1.33.1

Type Alias FailureEventData

FailureEventData: {
    error: string;
    message: string;
}

The payload for a failure event.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/FaucetConfig.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/FaucetConfig.html new file mode 100644 index 000000000..92a35d8d0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/FaucetConfig.html @@ -0,0 +1,2 @@ +FaucetConfig | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/FullNodeConfig.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/FullNodeConfig.html new file mode 100644 index 000000000..8efb04f2c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/FullNodeConfig.html @@ -0,0 +1,2 @@ +FullNodeConfig | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/FunctionABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/FunctionABI.html new file mode 100644 index 000000000..40b79aebb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/FunctionABI.html @@ -0,0 +1,2 @@ +FunctionABI | @aptos-labs/ts-sdk - v1.33.1

Type Alias FunctionABI

FunctionABI: {
    parameters: TypeTag[];
    typeParameters: MoveFunctionGenericTypeParam[];
}

Data needed for a generic function ABI, applicable to both view and entry functions.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GasEstimation.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GasEstimation.html new file mode 100644 index 000000000..694c902ec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GasEstimation.html @@ -0,0 +1,5 @@ +GasEstimation | @aptos-labs/ts-sdk - v1.33.1

Type Alias GasEstimation

GasEstimation: {
    deprioritized_gas_estimate?: number;
    gas_estimate: number;
    prioritized_gas_estimate?: number;
}

The output of the estimate gas API, including the deprioritized estimate for the gas unit price.

+

Type declaration

  • Optionaldeprioritized_gas_estimate?: number

    The deprioritized estimate for the gas unit price

    +
  • gas_estimate: number

    The current estimate for the gas unit price

    +
  • Optionalprioritized_gas_estimate?: number

    The prioritized estimate for the gas unit price

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccount.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccount.html new file mode 100644 index 000000000..f9ccdf89d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccount.html @@ -0,0 +1 @@ +GenerateAccount | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccountWithEd25519.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccountWithEd25519.html new file mode 100644 index 000000000..c97a41ca4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccountWithEd25519.html @@ -0,0 +1,2 @@ +GenerateAccountWithEd25519 | @aptos-labs/ts-sdk - v1.33.1

Type Alias GenerateAccountWithEd25519

GenerateAccountWithEd25519: {
    legacy: boolean;
    scheme: Ed25519;
}

Input type to generate an account using the Ed25519 signing scheme.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccountWithSingleSignerSecp256k1Key.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccountWithSingleSignerSecp256k1Key.html new file mode 100644 index 000000000..e24efe814 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenerateAccountWithSingleSignerSecp256k1Key.html @@ -0,0 +1,2 @@ +GenerateAccountWithSingleSignerSecp256k1Key | @aptos-labs/ts-sdk - v1.33.1

Type Alias GenerateAccountWithSingleSignerSecp256k1Key

GenerateAccountWithSingleSignerSecp256k1Key: {
    legacy?: false;
    scheme: Secp256k1Ecdsa;
}

Input type to generate an account with a Single Signer using Secp256k1.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GenesisPayload.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenesisPayload.html new file mode 100644 index 000000000..7537b6997 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenesisPayload.html @@ -0,0 +1,2 @@ +GenesisPayload | @aptos-labs/ts-sdk - v1.33.1

Type Alias GenesisPayload

GenesisPayload: {
    type: string;
    write_set: WriteSet;
}

The payload for the genesis block containing the type of the payload.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GenesisTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenesisTransactionResponse.html new file mode 100644 index 000000000..712c6dd0d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GenesisTransactionResponse.html @@ -0,0 +1,6 @@ +GenesisTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GenesisTransactionResponse

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;
}

The response for a genesis transaction, indicating the type of transaction.

+

Type declaration

  • 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
  • payload: GenesisPayload
  • state_change_hash: string
  • Optionalstate_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-1.33.1/types/GetANSNameResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetANSNameResponse.html new file mode 100644 index 000000000..8e8eb9218 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetANSNameResponse.html @@ -0,0 +1,2 @@ +GetANSNameResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetANSNameResponse

GetANSNameResponse: GetNamesQuery["current_aptos_names"]

The response containing the current Aptos names from the GetNamesQuery.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountCoinsDataResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountCoinsDataResponse.html new file mode 100644 index 000000000..d8d1ea73e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountCoinsDataResponse.html @@ -0,0 +1,2 @@ +GetAccountCoinsDataResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetAccountCoinsDataResponse

GetAccountCoinsDataResponse: GetAccountCoinsDataQuery["current_fungible_asset_balances"]

The current balances of fungible assets for an account.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountCollectionsWithOwnedTokenResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountCollectionsWithOwnedTokenResponse.html new file mode 100644 index 000000000..072cb44f1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountCollectionsWithOwnedTokenResponse.html @@ -0,0 +1,2 @@ +GetAccountCollectionsWithOwnedTokenResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetAccountCollectionsWithOwnedTokenResponse

GetAccountCollectionsWithOwnedTokenResponse: GetAccountCollectionsWithOwnedTokensQuery["current_collection_ownership_v2_view"]

The response structure for retrieving account collections associated with owned tokens.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountOwnedTokensFromCollectionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountOwnedTokensFromCollectionResponse.html new file mode 100644 index 000000000..61c45e8a9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountOwnedTokensFromCollectionResponse.html @@ -0,0 +1,2 @@ +GetAccountOwnedTokensFromCollectionResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetAccountOwnedTokensQueryResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountOwnedTokensQueryResponse.html new file mode 100644 index 000000000..b3d9f8285 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAccountOwnedTokensQueryResponse.html @@ -0,0 +1,2 @@ +GetAccountOwnedTokensQueryResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAptosRequestOptions.html new file mode 100644 index 000000000..e089553a9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetAptosRequestOptions.html @@ -0,0 +1,2 @@ +GetAptosRequestOptions | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetChainTopUserTransactionsResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetChainTopUserTransactionsResponse.html new file mode 100644 index 000000000..8641a3c08 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetChainTopUserTransactionsResponse.html @@ -0,0 +1,2 @@ +GetChainTopUserTransactionsResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetCollectionDataResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetCollectionDataResponse.html new file mode 100644 index 000000000..bf3c339a0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetCollectionDataResponse.html @@ -0,0 +1,2 @@ +GetCollectionDataResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetCurrentFungibleAssetBalancesResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetCurrentFungibleAssetBalancesResponse.html new file mode 100644 index 000000000..f58bce290 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetCurrentFungibleAssetBalancesResponse.html @@ -0,0 +1,2 @@ +GetCurrentFungibleAssetBalancesResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetCurrentFungibleAssetBalancesResponse

GetCurrentFungibleAssetBalancesResponse: GetCurrentFungibleAssetBalancesQuery["current_fungible_asset_balances"]

The current balances of fungible assets for a specific query.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetCurrentTokenOwnershipResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetCurrentTokenOwnershipResponse.html new file mode 100644 index 000000000..38bd5d6cd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetCurrentTokenOwnershipResponse.html @@ -0,0 +1,2 @@ +GetCurrentTokenOwnershipResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetDelegatedStakingActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetDelegatedStakingActivitiesResponse.html new file mode 100644 index 000000000..bf211ee2d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetDelegatedStakingActivitiesResponse.html @@ -0,0 +1,2 @@ +GetDelegatedStakingActivitiesResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetDelegatedStakingActivitiesResponse

GetDelegatedStakingActivitiesResponse: GetDelegatedStakingActivitiesQuery["delegated_staking_activities"]

The response containing the delegated staking activities from the query.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetEventsResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetEventsResponse.html new file mode 100644 index 000000000..1ce5cdfa4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetEventsResponse.html @@ -0,0 +1,2 @@ +GetEventsResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetEventsResponse

GetEventsResponse: GetEventsQuery["events"]

The response containing the events from the GetEventsQuery.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetFungibleAssetActivitiesResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetFungibleAssetActivitiesResponse.html new file mode 100644 index 000000000..6bf7f874d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetFungibleAssetActivitiesResponse.html @@ -0,0 +1,2 @@ +GetFungibleAssetActivitiesResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetFungibleAssetActivitiesResponse

GetFungibleAssetActivitiesResponse: GetFungibleAssetActivitiesQuery["fungible_asset_activities"]

The response containing the activities related to fungible assets.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetFungibleAssetMetadataResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetFungibleAssetMetadataResponse.html new file mode 100644 index 000000000..00ac9262d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetFungibleAssetMetadataResponse.html @@ -0,0 +1,2 @@ +GetFungibleAssetMetadataResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetFungibleAssetMetadataResponse

GetFungibleAssetMetadataResponse: GetFungibleAssetMetadataQuery["fungible_asset_metadata"]

The response containing metadata for a fungible asset.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetNumberOfDelegatorsResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetNumberOfDelegatorsResponse.html new file mode 100644 index 000000000..636c50ebe --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetNumberOfDelegatorsResponse.html @@ -0,0 +1,2 @@ +GetNumberOfDelegatorsResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetNumberOfDelegatorsResponse

GetNumberOfDelegatorsResponse: GetNumberOfDelegatorsQuery["num_active_delegator_per_pool"]

The number of active delegators per pool in response to a query.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetObjectDataQueryResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetObjectDataQueryResponse.html new file mode 100644 index 000000000..4a4b16f38 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetObjectDataQueryResponse.html @@ -0,0 +1,7 @@ +GetObjectDataQueryResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetOwnedTokensResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetOwnedTokensResponse.html new file mode 100644 index 000000000..c7963bf0d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetOwnedTokensResponse.html @@ -0,0 +1,2 @@ +GetOwnedTokensResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetOwnedTokensResponse

GetOwnedTokensResponse: GetCurrentTokenOwnershipQuery["current_token_ownerships_v2"]

The response containing the current token ownerships for a user.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetProcessorStatusResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetProcessorStatusResponse.html new file mode 100644 index 000000000..733ff3a7d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetProcessorStatusResponse.html @@ -0,0 +1,2 @@ +GetProcessorStatusResponse | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/GetRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetRequestOptions.html new file mode 100644 index 000000000..6ddb7029b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetRequestOptions.html @@ -0,0 +1,10 @@ +GetRequestOptions | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetRequestOptions

GetRequestOptions: {
    acceptType?: MimeType;
    aptosConfig: AptosConfig;
    contentType?: MimeType;
    originMethod: string;
    overrides?: ClientConfig;
    params?: Record<string,
        | string
        | AnyNumber
        | boolean
        | undefined>;
    path: string;
    type: AptosApiType;
}

Options for making a GET request, including configuration for the API client.

+

Type declaration

  • 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

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTableItemsDataResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTableItemsDataResponse.html new file mode 100644 index 000000000..bdf20b140 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTableItemsDataResponse.html @@ -0,0 +1,2 @@ +GetTableItemsDataResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetTableItemsDataResponse

GetTableItemsDataResponse: GetTableItemsDataQuery["table_items"]

The response structure for retrieving items from a table.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTableItemsMetadataResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTableItemsMetadataResponse.html new file mode 100644 index 000000000..85de7138d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTableItemsMetadataResponse.html @@ -0,0 +1,2 @@ +GetTableItemsMetadataResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetTableItemsMetadataResponse

GetTableItemsMetadataResponse: GetTableItemsMetadataQuery["table_metadatas"]

The metadata for table items retrieved from a query.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTokenActivityResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTokenActivityResponse.html new file mode 100644 index 000000000..f16d11cec --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTokenActivityResponse.html @@ -0,0 +1,2 @@ +GetTokenActivityResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetTokenActivityResponse

GetTokenActivityResponse: GetTokenActivityQuery["token_activities_v2"]

The response structure for retrieving token activity data.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTokenDataResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTokenDataResponse.html new file mode 100644 index 000000000..0931d79a1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GetTokenDataResponse.html @@ -0,0 +1,2 @@ +GetTokenDataResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetTokenDataResponse

GetTokenDataResponse: GetTokenDataQuery["current_token_datas_v2"][0]

The response structure for retrieving token data, containing the current token information.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/GraphqlQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/GraphqlQuery.html new file mode 100644 index 000000000..4e8d4223d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/GraphqlQuery.html @@ -0,0 +1,2 @@ +GraphqlQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GraphqlQuery

GraphqlQuery: {
    query: string;
    variables?: {};
}

The GraphQL query to pass into the queryIndexer function.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/HexInput.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/HexInput.html new file mode 100644 index 000000000..9f68af2ab --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/HexInput.html @@ -0,0 +1,2 @@ +HexInput | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/IndexerConfig.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/IndexerConfig.html new file mode 100644 index 000000000..5769a84f0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/IndexerConfig.html @@ -0,0 +1,2 @@ +IndexerConfig | @aptos-labs/ts-sdk - v1.33.1

Type Alias IndexerConfig

IndexerConfig: ClientHeadersType

An Indexer configuration object for sending requests with additional headers.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionData.html new file mode 100644 index 000000000..b2cdbabd2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionData.html @@ -0,0 +1,2 @@ +InputEntryFunctionData | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputEntryFunctionData

InputEntryFunctionData: {
    abi?: EntryFunctionABI;
    function: MoveFunctionId;
    functionArguments: (EntryFunctionArgumentTypes | SimpleEntryFunctionArgumentTypes)[];
    typeArguments?: TypeArgument[];
}

The data needed to generate an Entry Function payload.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionDataWithABI.html new file mode 100644 index 000000000..fb210afb0 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionDataWithABI.html @@ -0,0 +1,2 @@ +InputEntryFunctionDataWithABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputEntryFunctionDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionDataWithRemoteABI.html new file mode 100644 index 000000000..2255ca196 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputEntryFunctionDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputEntryFunctionDataWithRemoteABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputGenerateRawTransactionArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateRawTransactionArgs.html new file mode 100644 index 000000000..5ee3ddb48 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateRawTransactionArgs.html @@ -0,0 +1,2 @@ +InputGenerateRawTransactionArgs | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputGenerateRawTransactionArgs

A unified type for generating various transaction types.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionData.html new file mode 100644 index 000000000..b0d2800f3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionData.html @@ -0,0 +1,2 @@ +InputGenerateTransactionData | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputGenerateTransactionData

Unified type holding user data input interfaces for generating various transaction types.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionOptions.html new file mode 100644 index 000000000..d5df0bea6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionOptions.html @@ -0,0 +1,2 @@ +InputGenerateTransactionOptions | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputGenerateTransactionOptions

InputGenerateTransactionOptions: {
    accountSequenceNumber?: AnyNumber;
    expireTimestamp?: number;
    gasUnitPrice?: number;
    maxGasAmount?: number;
}

Optional options to set when generating a transaction, including a maximum gas amount.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionPayloadData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionPayloadData.html new file mode 100644 index 000000000..f8ad57cb4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionPayloadData.html @@ -0,0 +1,2 @@ +InputGenerateTransactionPayloadData | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputGenerateTransactionPayloadDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionPayloadDataWithABI.html new file mode 100644 index 000000000..601e729c4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionPayloadDataWithABI.html @@ -0,0 +1,2 @@ +InputGenerateTransactionPayloadDataWithABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputGenerateTransactionPayloadDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionPayloadDataWithRemoteABI.html new file mode 100644 index 000000000..831d2537c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputGenerateTransactionPayloadDataWithRemoteABI.html @@ -0,0 +1,3 @@ +InputGenerateTransactionPayloadDataWithRemoteABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputMultiSigData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputMultiSigData.html new file mode 100644 index 000000000..0b60b5469 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputMultiSigData.html @@ -0,0 +1,2 @@ +InputMultiSigData | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputMultiSigData

InputMultiSigData: {
    multisigAddress: AccountAddressInput;
} & InputEntryFunctionData

The data needed to generate a Multi Sig payload

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputMultiSigDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputMultiSigDataWithABI.html new file mode 100644 index 000000000..556e69772 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputMultiSigDataWithABI.html @@ -0,0 +1,2 @@ +InputMultiSigDataWithABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputMultiSigDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputMultiSigDataWithRemoteABI.html new file mode 100644 index 000000000..4acc47037 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputMultiSigDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputMultiSigDataWithRemoteABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputScriptData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputScriptData.html new file mode 100644 index 000000000..085707f21 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputScriptData.html @@ -0,0 +1,2 @@ +InputScriptData | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputScriptData

InputScriptData: {
    bytecode: HexInput;
    functionArguments: ScriptFunctionArgumentTypes[];
    typeArguments?: TypeArgument[];
}

The data needed to generate a Script payload.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputSimulateTransactionData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputSimulateTransactionData.html new file mode 100644 index 000000000..5ed75ef6c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputSimulateTransactionData.html @@ -0,0 +1,7 @@ +InputSimulateTransactionData | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputSimulateTransactionData

InputSimulateTransactionData: {
    feePayerPublicKey?: PublicKey;
    options?: InputSimulateTransactionOptions;
    secondarySignersPublicKeys?: (PublicKey | undefined)[];
    signerPublicKey?: PublicKey;
    transaction: AnyRawTransaction;
}

The data required to simulate a transaction, typically generated by generateTransaction().

+

Type declaration

  • 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 +This is optional and can be undefined to skip the public/auth key check during the transaction simulation.

    +
  • transaction: AnyRawTransaction

    The transaction to simulate, probably generated by generateTransaction()

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputSimulateTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputSimulateTransactionOptions.html new file mode 100644 index 000000000..1feeb15ee --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputSimulateTransactionOptions.html @@ -0,0 +1,2 @@ +InputSimulateTransactionOptions | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputSimulateTransactionOptions

InputSimulateTransactionOptions: {
    estimateGasUnitPrice?: boolean;
    estimateMaxGasAmount?: boolean;
    estimatePrioritizedGasUnitPrice?: boolean;
}

Options for simulating a transaction input, including whether to estimate the gas unit price.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionData.html new file mode 100644 index 000000000..393a2c41c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionData.html @@ -0,0 +1,2 @@ +InputViewFunctionData | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputViewFunctionData

InputViewFunctionData: {
    abi?: ViewFunctionABI;
    function: MoveFunctionId;
    functionArguments?: (EntryFunctionArgumentTypes | SimpleEntryFunctionArgumentTypes)[];
    typeArguments?: TypeArgument[];
}

The data needed to generate a View Function payload.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionDataWithABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionDataWithABI.html new file mode 100644 index 000000000..97b75a4c9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionDataWithABI.html @@ -0,0 +1,2 @@ +InputViewFunctionDataWithABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputViewFunctionDataWithRemoteABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionDataWithRemoteABI.html new file mode 100644 index 000000000..9ce47bf0d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionDataWithRemoteABI.html @@ -0,0 +1,2 @@ +InputViewFunctionDataWithRemoteABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/InputViewFunctionJsonData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionJsonData.html new file mode 100644 index 000000000..377a17122 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/InputViewFunctionJsonData.html @@ -0,0 +1,2 @@ +InputViewFunctionJsonData | @aptos-labs/ts-sdk - v1.33.1

Type Alias InputViewFunctionJsonData

InputViewFunctionJsonData: {
    function: MoveFunctionId;
    functionArguments?: MoveValue[];
    typeArguments?: MoveStructId[];
}

The data needed to generate a View Function payload in JSON format.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/LedgerInfo.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/LedgerInfo.html new file mode 100644 index 000000000..10596b3ac --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/LedgerInfo.html @@ -0,0 +1,5 @@ +LedgerInfo | @aptos-labs/ts-sdk - v1.33.1

Type Alias LedgerInfo

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;
}

Information about the current blockchain ledger, including its chain ID.

+

Type declaration

  • block_height: string
  • chain_id: number

    Chain ID of the current chain

    +
  • epoch: string
  • Optionalgit_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-1.33.1/types/LedgerVersionArg.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/LedgerVersionArg.html new file mode 100644 index 000000000..819350690 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/LedgerVersionArg.html @@ -0,0 +1,2 @@ +LedgerVersionArg | @aptos-labs/ts-sdk - v1.33.1

Type Alias LedgerVersionArg

LedgerVersionArg: {
    ledgerVersion?: AnyNumber;
}

The ledger version of transactions, defaulting to the latest version if not specified.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveAddressType.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveAddressType.html new file mode 100644 index 000000000..4433a781a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveAddressType.html @@ -0,0 +1,2 @@ +MoveAddressType | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveAddressType

MoveAddressType: string

A string representing a Move address.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunction.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunction.html new file mode 100644 index 000000000..4558c7f59 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunction.html @@ -0,0 +1,7 @@ +MoveFunction | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveFunction

MoveFunction: {
    generic_type_params: MoveFunctionGenericTypeParam[];
    is_entry: boolean;
    is_view: boolean;
    name: string;
    params: string[];
    return: string[];
    visibility: MoveFunctionVisibility;
}

Move function

+

Type declaration

  • generic_type_params: MoveFunctionGenericTypeParam[]

    Generic type params associated with the Move function

    +
  • 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

    +
  • visibility: MoveFunctionVisibility
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunctionGenericTypeParam.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunctionGenericTypeParam.html new file mode 100644 index 000000000..29ebd836e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunctionGenericTypeParam.html @@ -0,0 +1,2 @@ +MoveFunctionGenericTypeParam | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveFunctionGenericTypeParam

MoveFunctionGenericTypeParam: {
    constraints: MoveAbility[];
}

Move abilities associated with the generic type parameter of a function.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunctionId.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunctionId.html new file mode 100644 index 000000000..b6712d5c6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveFunctionId.html @@ -0,0 +1,2 @@ +MoveFunctionId | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/MoveModule.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveModule.html new file mode 100644 index 000000000..c31ab26ce --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveModule.html @@ -0,0 +1,5 @@ +MoveModule | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveModule

MoveModule: {
    address: string;
    exposed_functions: MoveFunction[];
    friends: MoveModuleId[];
    name: string;
    structs: MoveStruct[];
}

A Move module

+

Type declaration

  • 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-1.33.1/types/MoveModuleBytecode.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveModuleBytecode.html new file mode 100644 index 000000000..e191bf1b5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveModuleBytecode.html @@ -0,0 +1,2 @@ +MoveModuleBytecode | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveModuleBytecode

MoveModuleBytecode: {
    abi?: MoveModule;
    bytecode: string;
}

A Move module containing an address.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveModuleId.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveModuleId.html new file mode 100644 index 000000000..aec78fe35 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveModuleId.html @@ -0,0 +1,3 @@ +MoveModuleId | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/MoveObjectType.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveObjectType.html new file mode 100644 index 000000000..fb436eec6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveObjectType.html @@ -0,0 +1,2 @@ +MoveObjectType | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveObjectType

MoveObjectType: string

The type for identifying objects to be moved within the system.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveOptionType.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveOptionType.html new file mode 100644 index 000000000..eca939d7f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveOptionType.html @@ -0,0 +1,2 @@ +MoveOptionType | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/MoveResource.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveResource.html new file mode 100644 index 000000000..7f36b7adf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveResource.html @@ -0,0 +1 @@ +MoveResource | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveResource<T>

MoveResource<T>: {
    data: T;
    type: MoveStructId;
}

Type Parameters

  • T = {}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveScriptBytecode.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveScriptBytecode.html new file mode 100644 index 000000000..73120be2c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveScriptBytecode.html @@ -0,0 +1,2 @@ +MoveScriptBytecode | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveScriptBytecode

MoveScriptBytecode: {
    abi?: MoveFunction;
    bytecode: string;
}

The bytecode for a Move script.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStruct.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStruct.html new file mode 100644 index 000000000..bbf9fd696 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStruct.html @@ -0,0 +1,9 @@ +MoveStruct | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveStruct

MoveStruct: {
    abilities: MoveAbility[];
    fields: MoveStructField[];
    generic_type_params: MoveFunctionGenericTypeParam[];
    is_event: boolean;
    is_native: boolean;
    name: string;
}

A move struct

+

Type declaration

  • 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_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-1.33.1/types/MoveStructField.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructField.html new file mode 100644 index 000000000..a71601d20 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructField.html @@ -0,0 +1,2 @@ +MoveStructField | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveStructField

MoveStructField: {
    name: string;
    type: string;
}

A field in a Move struct, identified by its name.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructId.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructId.html new file mode 100644 index 000000000..5bd71f99d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructId.html @@ -0,0 +1,2 @@ +MoveStructId | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveStructId

MoveStructId: `${string}::${string}::${string}`

A structure representing a move with a name.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructType.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructType.html new file mode 100644 index 000000000..a5428141e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveStructType.html @@ -0,0 +1 @@ +MoveStructType | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveStructType

MoveStructType: {}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveType.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveType.html new file mode 100644 index 000000000..aeb87ecda --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveType.html @@ -0,0 +1,3 @@ +MoveType | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveType

MoveType:
    | boolean
    | string
    | MoveUint8Type
    | MoveUint16Type
    | MoveUint32Type
    | MoveUint64Type
    | MoveUint128Type
    | MoveUint256Type
    | 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-1.33.1/types/MoveUint128Type.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint128Type.html new file mode 100644 index 000000000..facc477ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint128Type.html @@ -0,0 +1,2 @@ +MoveUint128Type | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/MoveUint16Type.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint16Type.html new file mode 100644 index 000000000..9dd1e641d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint16Type.html @@ -0,0 +1,2 @@ +MoveUint16Type | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveUint16Type

MoveUint16Type: number

A 16-bit unsigned integer used in the Move programming language.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint256Type.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint256Type.html new file mode 100644 index 000000000..2ef55e098 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint256Type.html @@ -0,0 +1,2 @@ +MoveUint256Type | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/MoveUint32Type.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint32Type.html new file mode 100644 index 000000000..f4424009f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint32Type.html @@ -0,0 +1,2 @@ +MoveUint32Type | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveUint32Type

MoveUint32Type: number

A 32-bit unsigned integer type used in Move programming.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint64Type.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint64Type.html new file mode 100644 index 000000000..486c72785 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint64Type.html @@ -0,0 +1,2 @@ +MoveUint64Type | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/MoveUint8Type.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint8Type.html new file mode 100644 index 000000000..feb19b2bd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveUint8Type.html @@ -0,0 +1,2 @@ +MoveUint8Type | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveUint8Type

MoveUint8Type: number

A number representing a Move uint8 type.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveValue.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveValue.html new file mode 100644 index 000000000..5c8b4934f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MoveValue.html @@ -0,0 +1,12 @@ +MoveValue | @aptos-labs/ts-sdk - v1.33.1

Type Alias MoveValue

MoveValue:
    | boolean
    | string
    | MoveUint8Type
    | MoveUint16Type
    | MoveUint32Type
    | MoveUint64Type
    | MoveUint128Type
    | MoveUint256Type
    | 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

+

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-1.33.1/types/MultisigPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/MultisigPayloadResponse.html new file mode 100644 index 000000000..7a6551af2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/MultisigPayloadResponse.html @@ -0,0 +1,2 @@ +MultisigPayloadResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias MultisigPayloadResponse

MultisigPayloadResponse: {
    multisig_address: string;
    transaction_payload?: EntryFunctionPayloadResponse;
    type: string;
}

The response payload for a multisig transaction, containing the type of the transaction.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/OrderBy.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/OrderBy.html new file mode 100644 index 000000000..65cf11890 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/OrderBy.html @@ -0,0 +1,3 @@ +OrderBy | @aptos-labs/ts-sdk - v1.33.1

Type Alias OrderBy<T>

OrderBy<T>: {
    [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-1.33.1/types/OrderByValue.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/OrderByValue.html new file mode 100644 index 000000000..b44f8abdc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/OrderByValue.html @@ -0,0 +1,2 @@ +OrderByValue | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/ParsingResult.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ParsingResult.html new file mode 100644 index 000000000..161e06b24 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ParsingResult.html @@ -0,0 +1,6 @@ +ParsingResult | @aptos-labs/ts-sdk - v1.33.1

Type Alias ParsingResult<T>

ParsingResult<T>: {
    invalidReason?: T;
    invalidReasonMessage?: string;
    valid: boolean;
}

Whereas ParsingError is thrown when parsing fails, e.g. in a fromString function, +this type is returned from "defensive" functions like isValid.

+

Type Parameters

  • T

Type declaration

  • OptionalinvalidReason?: T

    If valid is false, this will be a code explaining why parsing failed.

    +
  • OptionalinvalidReasonMessage?: 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-1.33.1/types/PendingTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/PendingTransactionResponse.html new file mode 100644 index 000000000..98948253f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/PendingTransactionResponse.html @@ -0,0 +1,2 @@ +PendingTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias PendingTransactionResponse

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;
}

The response for a pending transaction, indicating that the transaction is still being processed.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/PostAptosRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/PostAptosRequestOptions.html new file mode 100644 index 000000000..458e207ad --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/PostAptosRequestOptions.html @@ -0,0 +1,2 @@ +PostAptosRequestOptions | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/PostRequestOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/PostRequestOptions.html new file mode 100644 index 000000000..e6740016a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/PostRequestOptions.html @@ -0,0 +1,11 @@ +PostRequestOptions | @aptos-labs/ts-sdk - v1.33.1

Type Alias PostRequestOptions

PostRequestOptions: {
    acceptType?: MimeType;
    aptosConfig: AptosConfig;
    body?: any;
    contentType?: MimeType;
    originMethod: string;
    overrides?: ClientConfig;
    params?: Record<string,
        | string
        | AnyNumber
        | boolean
        | undefined>;
    path: string;
    type: AptosApiType;
}

Options for making a POST request, including the API client configuration.

+

Type declaration

  • 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

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchCallback.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchCallback.html new file mode 100644 index 000000000..ca2899e86 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchCallback.html @@ -0,0 +1 @@ +ProofFetchCallback | @aptos-labs/ts-sdk - v1.33.1

Type Alias ProofFetchCallback

ProofFetchCallback: ((status: ProofFetchStatus) => Promise<void>)
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchFailure.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchFailure.html new file mode 100644 index 000000000..7870dca70 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchFailure.html @@ -0,0 +1 @@ +ProofFetchFailure | @aptos-labs/ts-sdk - v1.33.1

Type Alias ProofFetchFailure

ProofFetchFailure: {
    error: string;
    status: "Failed";
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchStatus.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchStatus.html new file mode 100644 index 000000000..b7e17bb50 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchStatus.html @@ -0,0 +1 @@ +ProofFetchStatus | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchSuccess.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchSuccess.html new file mode 100644 index 000000000..184409ed9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ProofFetchSuccess.html @@ -0,0 +1 @@ +ProofFetchSuccess | @aptos-labs/ts-sdk - v1.33.1

Type Alias ProofFetchSuccess

ProofFetchSuccess: {
    status: "Success";
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptFunctionArgumentTypes.html new file mode 100644 index 000000000..7a312d018 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +ScriptFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.33.1

Type Alias ScriptFunctionArgumentTypes

ScriptFunctionArgumentTypes:
    | Bool
    | U8
    | U16
    | U32
    | U64
    | U128
    | U256
    | 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-1.33.1/types/ScriptPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptPayloadResponse.html new file mode 100644 index 000000000..d201400bb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptPayloadResponse.html @@ -0,0 +1,4 @@ +ScriptPayloadResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias ScriptPayloadResponse

ScriptPayloadResponse: {
    arguments: any[];
    code: MoveScriptBytecode;
    type: string;
    type_arguments: string[];
}

The payload for a script response, containing the type of the script.

+

Type declaration

  • arguments: any[]

    Arguments of the function

    +
  • code: MoveScriptBytecode
  • type: string
  • type_arguments: string[]

    Type arguments of the function

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptWriteSet.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptWriteSet.html new file mode 100644 index 000000000..eaa514ecb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ScriptWriteSet.html @@ -0,0 +1,2 @@ +ScriptWriteSet | @aptos-labs/ts-sdk - v1.33.1

Type Alias ScriptWriteSet

ScriptWriteSet: {
    execute_as: string;
    script: ScriptPayloadResponse;
    type: string;
}

The set of properties for writing scripts, including the type of script.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/SimpleEntryFunctionArgumentTypes.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/SimpleEntryFunctionArgumentTypes.html new file mode 100644 index 000000000..05a3cbef9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/SimpleEntryFunctionArgumentTypes.html @@ -0,0 +1,2 @@ +SimpleEntryFunctionArgumentTypes | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/SingleKeySignerFromDerivationPathArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/SingleKeySignerFromDerivationPathArgs.html new file mode 100644 index 000000000..99b80c4a6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/SingleKeySignerFromDerivationPathArgs.html @@ -0,0 +1,2 @@ +SingleKeySignerFromDerivationPathArgs | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/StateCheckpointTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/StateCheckpointTransactionResponse.html new file mode 100644 index 000000000..25b80e35d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/StateCheckpointTransactionResponse.html @@ -0,0 +1,5 @@ +StateCheckpointTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias StateCheckpointTransactionResponse

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;
}

The response for a state checkpoint transaction, indicating the type of transaction.

+

Type declaration

  • 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
  • type: StateCheckpoint
  • 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-1.33.1/types/SuccessEventData.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/SuccessEventData.html new file mode 100644 index 000000000..d923b7e09 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/SuccessEventData.html @@ -0,0 +1,2 @@ +SuccessEventData | @aptos-labs/ts-sdk - v1.33.1

Type Alias SuccessEventData

SuccessEventData: {
    message: string;
    transactionHash: string;
}

The payload for a success event.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TableItemRequest.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TableItemRequest.html new file mode 100644 index 000000000..b07bd90e3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TableItemRequest.html @@ -0,0 +1,3 @@ +TableItemRequest | @aptos-labs/ts-sdk - v1.33.1

Type Alias TableItemRequest

TableItemRequest: {
    key: any;
    key_type: MoveValue;
    value_type: MoveValue;
}

The request payload for the GetTableItem API.

+

Type declaration

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TokenStandard.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TokenStandard.html new file mode 100644 index 000000000..6d53509c2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TokenStandard.html @@ -0,0 +1,2 @@ +TokenStandard | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/TransactionEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionEd25519Signature.html new file mode 100644 index 000000000..1e6c7ec75 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionEd25519Signature.html @@ -0,0 +1,2 @@ +TransactionEd25519Signature | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionEd25519Signature

TransactionEd25519Signature: {
    public_key: string;
    signature: "ed25519_signature";
    type: string;
}

The signature for a transaction using the Ed25519 algorithm.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionFeePayerSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionFeePayerSignature.html new file mode 100644 index 000000000..c730b0b8c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionFeePayerSignature.html @@ -0,0 +1,4 @@ +TransactionFeePayerSignature | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionFeePayerSignature

TransactionFeePayerSignature: {
    fee_payer_address: string;
    fee_payer_signer: AccountSignature;
    secondary_signer_addresses: string[];
    secondary_signers: AccountSignature[];
    sender: AccountSignature;
    type: "fee_payer_signature";
}

The signature of the fee payer in a transaction.

+

Type declaration

  • 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

    +
  • sender: AccountSignature
  • type: "fee_payer_signature"
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionMultiAgentSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionMultiAgentSignature.html new file mode 100644 index 000000000..23b9cc808 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionMultiAgentSignature.html @@ -0,0 +1,4 @@ +TransactionMultiAgentSignature | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionMultiAgentSignature

TransactionMultiAgentSignature: {
    secondary_signer_addresses: string[];
    secondary_signers: AccountSignature[];
    sender: AccountSignature;
    type: "multi_agent_signature";
}

The structure for a multi-agent signature in a transaction.

+

Type declaration

  • secondary_signer_addresses: string[]

    The other involved parties' addresses

    +
  • secondary_signers: AccountSignature[]

    The associated signatures, in the same order as the secondary addresses

    +
  • sender: AccountSignature
  • type: "multi_agent_signature"
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionMultiEd25519Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionMultiEd25519Signature.html new file mode 100644 index 000000000..7f7f4c9ff --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionMultiEd25519Signature.html @@ -0,0 +1,5 @@ +TransactionMultiEd25519Signature | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionMultiEd25519Signature

TransactionMultiEd25519Signature: {
    bitmap: string;
    public_keys: string[];
    signatures: string[];
    threshold: number;
    type: "multi_ed25519_signature";
}

The structure for a multi-signature transaction using Ed25519.

+

Type declaration

  • 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-1.33.1/types/TransactionPayloadResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionPayloadResponse.html new file mode 100644 index 000000000..8b3f058f6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionPayloadResponse.html @@ -0,0 +1,2 @@ +TransactionPayloadResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionPayloadResponse

The payload for a transaction response, which can be an entry function, script, or multisig payload.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionResponse.html new file mode 100644 index 000000000..91c654f87 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionResponse.html @@ -0,0 +1,2 @@ +TransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionResponse

The response for a transaction, which can be either pending or committed.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionSecp256k1Signature.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionSecp256k1Signature.html new file mode 100644 index 000000000..caf8e596c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionSecp256k1Signature.html @@ -0,0 +1,2 @@ +TransactionSecp256k1Signature | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionSecp256k1Signature

TransactionSecp256k1Signature: {
    public_key: string;
    signature: "secp256k1_ecdsa_signature";
    type: string;
}

The structure for a Secp256k1 signature in a transaction.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionSignature.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionSignature.html new file mode 100644 index 000000000..e10b25c06 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TransactionSignature.html @@ -0,0 +1,2 @@ +TransactionSignature | @aptos-labs/ts-sdk - v1.33.1

Type Alias TransactionSignature

JSON representations of transaction signatures returned from the node API.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/TypeArgument.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/TypeArgument.html new file mode 100644 index 000000000..c4aecbddf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/TypeArgument.html @@ -0,0 +1,21 @@ +TypeArgument | @aptos-labs/ts-sdk - v1.33.1

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
  • +
  • bool
  • +
  • address
  • +
  • signer
  • +
  • vector
  • +
  • address::module::struct
  • +
  • address::module::struct<Type1, Type2>
  • +
+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint128.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint128.html new file mode 100644 index 000000000..adba94381 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint128.html @@ -0,0 +1,2 @@ +Uint128 | @aptos-labs/ts-sdk - v1.33.1

Type Alias Uint128

Uint128: bigint

A 128-bit unsigned integer used for precise arithmetic operations.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint16.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint16.html new file mode 100644 index 000000000..f06b9e9e5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint16.html @@ -0,0 +1,2 @@ +Uint16 | @aptos-labs/ts-sdk - v1.33.1

Type Alias Uint16

Uint16: number

A 16-bit unsigned integer.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint256.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint256.html new file mode 100644 index 000000000..a5ed58a95 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint256.html @@ -0,0 +1,2 @@ +Uint256 | @aptos-labs/ts-sdk - v1.33.1

Type Alias Uint256

Uint256: bigint

A 256-bit unsigned integer used for precise numerical calculations.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint32.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint32.html new file mode 100644 index 000000000..66b8d6fe6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint32.html @@ -0,0 +1,2 @@ +Uint32 | @aptos-labs/ts-sdk - v1.33.1

Type Alias Uint32

Uint32: number

A 32-bit unsigned integer.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint64.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint64.html new file mode 100644 index 000000000..76fabec57 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint64.html @@ -0,0 +1,2 @@ +Uint64 | @aptos-labs/ts-sdk - v1.33.1

Type Alias Uint64

Uint64: bigint

A 64-bit unsigned integer value.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint8.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint8.html new file mode 100644 index 000000000..b7cf2d19b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/Uint8.html @@ -0,0 +1,2 @@ +Uint8 | @aptos-labs/ts-sdk - v1.33.1

Type Alias Uint8

Uint8: number

BCS types

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/UserTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/UserTransactionResponse.html new file mode 100644 index 000000000..20ddafd4a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/UserTransactionResponse.html @@ -0,0 +1,6 @@ +UserTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias UserTransactionResponse

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;
    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;
}

The response structure for a user transaction.

+

Type declaration

  • 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
  • payload: TransactionPayloadResponse
  • sender: string
  • sequence_number: string
  • Optionalsignature?: TransactionSignature
  • 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-1.33.1/types/ValidatorTransactionResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ValidatorTransactionResponse.html new file mode 100644 index 000000000..9dbf6cd63 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ValidatorTransactionResponse.html @@ -0,0 +1,6 @@ +ValidatorTransactionResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias ValidatorTransactionResponse

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;
}

The response for a validator transaction, indicating the type of transaction.

+

Type declaration

  • 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-1.33.1/types/ViewFunctionABI.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ViewFunctionABI.html new file mode 100644 index 000000000..77e846144 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ViewFunctionABI.html @@ -0,0 +1,2 @@ +ViewFunctionABI | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/ViewFunctionJsonPayload.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/ViewFunctionJsonPayload.html new file mode 100644 index 000000000..30abb569d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/ViewFunctionJsonPayload.html @@ -0,0 +1,2 @@ +ViewFunctionJsonPayload | @aptos-labs/ts-sdk - v1.33.1

Type Alias ViewFunctionJsonPayload

ViewFunctionJsonPayload: {
    function: MoveFunctionId;
    functionArguments: MoveValue[];
    typeArguments: MoveStructId[];
}

The payload sent to the fullnode for a JSON view request.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WaitForTransactionOptions.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WaitForTransactionOptions.html new file mode 100644 index 000000000..099a9b1d7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WaitForTransactionOptions.html @@ -0,0 +1,2 @@ +WaitForTransactionOptions | @aptos-labs/ts-sdk - v1.33.1

Type Alias WaitForTransactionOptions

WaitForTransactionOptions: {
    checkSuccess?: boolean;
    timeoutSecs?: number;
    waitForIndexer?: boolean;
}

Options for configuring the behavior of the waitForTransaction() function.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSet.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSet.html new file mode 100644 index 000000000..279a01c78 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSet.html @@ -0,0 +1 @@ +WriteSet | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChange.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChange.html new file mode 100644 index 000000000..48c3ed0a5 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChange.html @@ -0,0 +1,2 @@ +WriteSetChange | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/types/WriteSetChangeDeleteModule.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteModule.html new file mode 100644 index 000000000..674beb4cc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteModule.html @@ -0,0 +1,3 @@ +WriteSetChangeDeleteModule | @aptos-labs/ts-sdk - v1.33.1

Type Alias WriteSetChangeDeleteModule

WriteSetChangeDeleteModule: {
    address: string;
    module: MoveModuleId;
    state_key_hash: string;
    type: string;
}

The structure for a module deletion change in a write set.

+

Type declaration

  • address: string
  • module: MoveModuleId
  • state_key_hash: string

    State key hash

    +
  • type: string
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteResource.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteResource.html new file mode 100644 index 000000000..f96445f77 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteResource.html @@ -0,0 +1,2 @@ +WriteSetChangeDeleteResource | @aptos-labs/ts-sdk - v1.33.1

Type Alias WriteSetChangeDeleteResource

WriteSetChangeDeleteResource: {
    address: string;
    resource: string;
    state_key_hash: string;
    type: string;
}

The payload for a resource deletion in a write set change.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteTableItem.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteTableItem.html new file mode 100644 index 000000000..06deb2a5a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeDeleteTableItem.html @@ -0,0 +1,2 @@ +WriteSetChangeDeleteTableItem | @aptos-labs/ts-sdk - v1.33.1

Type Alias WriteSetChangeDeleteTableItem

WriteSetChangeDeleteTableItem: {
    data?: DeletedTableData;
    handle: string;
    key: string;
    state_key_hash: string;
    type: string;
}

The payload for a write set change that deletes a table item.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteModule.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteModule.html new file mode 100644 index 000000000..f957ae5bf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteModule.html @@ -0,0 +1,2 @@ +WriteSetChangeWriteModule | @aptos-labs/ts-sdk - v1.33.1

Type Alias WriteSetChangeWriteModule

WriteSetChangeWriteModule: {
    address: string;
    data: MoveModuleBytecode;
    state_key_hash: string;
    type: string;
}

The structure for a write module change in a write set.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteResource.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteResource.html new file mode 100644 index 000000000..8629d9c5d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteResource.html @@ -0,0 +1,2 @@ +WriteSetChangeWriteResource | @aptos-labs/ts-sdk - v1.33.1

Type Alias WriteSetChangeWriteResource

WriteSetChangeWriteResource: {
    address: string;
    data: MoveResource;
    state_key_hash: string;
    type: string;
}

The resource associated with a write set change, identified by its type.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteTableItem.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteTableItem.html new file mode 100644 index 000000000..a5ce81fc2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/WriteSetChangeWriteTableItem.html @@ -0,0 +1,2 @@ +WriteSetChangeWriteTableItem | @aptos-labs/ts-sdk - v1.33.1

Type Alias WriteSetChangeWriteTableItem

WriteSetChangeWriteTableItem: {
    data?: DecodedTableData;
    handle: string;
    key: string;
    state_key_hash: string;
    type: string;
    value: string;
}

The structure for a write operation on a table in a write set change.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.AptosApiErrorOpts.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.AptosApiErrorOpts.html new file mode 100644 index 000000000..23585abfb --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.AptosApiErrorOpts.html @@ -0,0 +1,2 @@ +AptosApiErrorOpts | @aptos-labs/ts-sdk - v1.33.1
AptosApiErrorOpts: {
    apiType: AptosApiType;
    aptosRequest: AptosRequest;
    aptosResponse: AptosResponse<any, any>;
}

Options for handling errors in the Aptos API.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.BigintComparisonExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.BigintComparisonExp.html new file mode 100644 index 000000000..3768a05f9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.BigintComparisonExp.html @@ -0,0 +1,2 @@ +BigintComparisonExp | @aptos-labs/ts-sdk - v1.33.1
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"][]>;
}

Boolean expression to compare columns of type "bigint". All fields are combined with logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.BooleanComparisonExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.BooleanComparisonExp.html new file mode 100644 index 000000000..373407c39 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.BooleanComparisonExp.html @@ -0,0 +1,2 @@ +BooleanComparisonExp | @aptos-labs/ts-sdk - v1.33.1
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"][]>;
}

Boolean expression to compare columns of type "Boolean". All fields are combined with logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExp.html new file mode 100644 index 000000000..05279ed40 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExp.html @@ -0,0 +1 @@ +CurrentAptosNamesAggregateBoolExp | @aptos-labs/ts-sdk - v1.33.1
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html new file mode 100644 index 000000000..29ee2c9ca --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpBoolAnd.html @@ -0,0 +1 @@ +CurrentAptosNamesAggregateBoolExpBoolAnd | @aptos-labs/ts-sdk - v1.33.1

Type Alias CurrentAptosNamesAggregateBoolExpBoolAnd

CurrentAptosNamesAggregateBoolExpBoolAnd: {
    arguments: CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolAndArgumentsColumns;
    distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
    filter?: InputMaybe<CurrentAptosNamesBoolExp>;
    predicate: BooleanComparisonExp;
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html new file mode 100644 index 000000000..28e9da55d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpBoolOr.html @@ -0,0 +1 @@ +CurrentAptosNamesAggregateBoolExpBoolOr | @aptos-labs/ts-sdk - v1.33.1

Type Alias CurrentAptosNamesAggregateBoolExpBoolOr

CurrentAptosNamesAggregateBoolExpBoolOr: {
    arguments: CurrentAptosNamesSelectColumnCurrentAptosNamesAggregateBoolExpBoolOrArgumentsColumns;
    distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
    filter?: InputMaybe<CurrentAptosNamesBoolExp>;
    predicate: BooleanComparisonExp;
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpCount.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpCount.html new file mode 100644 index 000000000..45e1e8ac1 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesAggregateBoolExpCount.html @@ -0,0 +1 @@ +CurrentAptosNamesAggregateBoolExpCount | @aptos-labs/ts-sdk - v1.33.1

Type Alias CurrentAptosNamesAggregateBoolExpCount

CurrentAptosNamesAggregateBoolExpCount: {
    arguments?: InputMaybe<CurrentAptosNamesSelectColumn[]>;
    distinct?: InputMaybe<Scalars["Boolean"]["input"]>;
    filter?: InputMaybe<CurrentAptosNamesBoolExp>;
    predicate: IntComparisonExp;
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesBoolExp.html new file mode 100644 index 000000000..aa55c39c7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentAptosNamesBoolExp.html @@ -0,0 +1,2 @@ +CurrentAptosNamesBoolExp | @aptos-labs/ts-sdk - v1.33.1

Type Alias CurrentAptosNamesBoolExp

CurrentAptosNamesBoolExp: {
    _and?: InputMaybe<CurrentAptosNamesBoolExp[]>;
    _not?: InputMaybe<CurrentAptosNamesBoolExp>;
    _or?: InputMaybe<CurrentAptosNamesBoolExp[]>;
    domain?: InputMaybe<StringComparisonExp>;
    domain_expiration_timestamp?: InputMaybe<TimestampComparisonExp>;
    domain_with_suffix?: InputMaybe<StringComparisonExp>;
    expiration_timestamp?: InputMaybe<TimestampComparisonExp>;
    is_active?: InputMaybe<BooleanComparisonExp>;
    is_domain_owner?: InputMaybe<CurrentAptosNamesBoolExp>;
    is_primary?: InputMaybe<BooleanComparisonExp>;
    last_transaction_version?: InputMaybe<BigintComparisonExp>;
    owner_address?: InputMaybe<StringComparisonExp>;
    registered_address?: InputMaybe<StringComparisonExp>;
    subdomain?: InputMaybe<StringComparisonExp>;
    subdomain_expiration_policy?: InputMaybe<BigintComparisonExp>;
    token_name?: InputMaybe<StringComparisonExp>;
    token_standard?: InputMaybe<StringComparisonExp>;
}

Boolean expression to filter rows from the table "current_aptos_names". All fields are combined with a logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentFungibleAssetBalancesBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentFungibleAssetBalancesBoolExp.html new file mode 100644 index 000000000..62e8e3a09 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.CurrentFungibleAssetBalancesBoolExp.html @@ -0,0 +1,2 @@ +CurrentFungibleAssetBalancesBoolExp | @aptos-labs/ts-sdk - v1.33.1

Type Alias CurrentFungibleAssetBalancesBoolExp

CurrentFungibleAssetBalancesBoolExp: {
    _and?: InputMaybe<CurrentFungibleAssetBalancesBoolExp[]>;
    _not?: InputMaybe<CurrentFungibleAssetBalancesBoolExp>;
    _or?: InputMaybe<CurrentFungibleAssetBalancesBoolExp[]>;
    amount?: InputMaybe<NumericComparisonExp>;
    asset_type?: InputMaybe<StringComparisonExp>;
    is_frozen?: InputMaybe<BooleanComparisonExp>;
    is_primary?: InputMaybe<BooleanComparisonExp>;
    last_transaction_timestamp?: InputMaybe<TimestampComparisonExp>;
    last_transaction_version?: InputMaybe<BigintComparisonExp>;
    metadata?: InputMaybe<FungibleAssetMetadataBoolExp>;
    owner_address?: InputMaybe<StringComparisonExp>;
    storage_id?: InputMaybe<StringComparisonExp>;
    token_standard?: InputMaybe<StringComparisonExp>;
}

Boolean expression to filter rows from the table "current_unified_fungible_asset_balances_to_be_renamed". All fields are combined with a logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.ArgumentMap.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.ArgumentMap.html new file mode 100644 index 000000000..b3354b52f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.ArgumentMap.html @@ -0,0 +1 @@ +ArgumentMap | @aptos-labs/ts-sdk - v1.33.1
ArgumentMap<T>: {
    [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-1.33.1/types/_internal_.EventEmitter.EventArgs.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventArgs.html new file mode 100644 index 000000000..a674deeef --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventArgs.html @@ -0,0 +1 @@ +EventArgs | @aptos-labs/ts-sdk - v1.33.1
EventArgs<T, K>: Parameters<EventListener<T, K>>

Type Parameters

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventListener.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventListener.html new file mode 100644 index 000000000..674109910 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventListener.html @@ -0,0 +1 @@ +EventListener | @aptos-labs/ts-sdk - v1.33.1
EventListener<T, K>: T extends string | symbol
    ? ((...args: any[]) => void)
    : ((...args: ArgumentMap<Exclude<T, string | symbol>>[Extract<K, keyof T>]) => void)

Type Parameters

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventNames.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventNames.html new file mode 100644 index 000000000..8d265670c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.EventNames.html @@ -0,0 +1 @@ +EventNames | @aptos-labs/ts-sdk - v1.33.1
EventNames<T>: T extends string | symbol
    ? T
    : keyof T

Type Parameters

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.ValidEventTypes.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.ValidEventTypes.html new file mode 100644 index 000000000..7aff81604 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventEmitter.ValidEventTypes.html @@ -0,0 +1,5 @@ +ValidEventTypes | @aptos-labs/ts-sdk - v1.33.1
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-1.33.1/types/_internal_.EventsBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventsBoolExp.html new file mode 100644 index 000000000..9d32148cf --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.EventsBoolExp.html @@ -0,0 +1,2 @@ +EventsBoolExp | @aptos-labs/ts-sdk - v1.33.1
EventsBoolExp: {
    _and?: InputMaybe<EventsBoolExp[]>;
    _not?: InputMaybe<EventsBoolExp>;
    _or?: InputMaybe<EventsBoolExp[]>;
    account_address?: InputMaybe<StringComparisonExp>;
    creation_number?: InputMaybe<BigintComparisonExp>;
    data?: InputMaybe<JsonbComparisonExp>;
    event_index?: InputMaybe<BigintComparisonExp>;
    indexed_type?: InputMaybe<StringComparisonExp>;
    sequence_number?: InputMaybe<BigintComparisonExp>;
    transaction_block_height?: InputMaybe<BigintComparisonExp>;
    transaction_version?: InputMaybe<BigintComparisonExp>;
    type?: InputMaybe<StringComparisonExp>;
}

Boolean expression to filter rows from the table "events". All fields are combined with a logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Exclude.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Exclude.html new file mode 100644 index 000000000..a2a598dd3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Exclude.html @@ -0,0 +1,2 @@ +Exclude | @aptos-labs/ts-sdk - v1.33.1

Type Alias Exclude<T, U>

Exclude<T, U>: 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-1.33.1/types/_internal_.Extract.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Extract.html new file mode 100644 index 000000000..940dea085 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Extract.html @@ -0,0 +1,2 @@ +Extract | @aptos-labs/ts-sdk - v1.33.1

Type Alias Extract<T, U>

Extract<T, U>: 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-1.33.1/types/_internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html new file mode 100644 index 000000000..a463ee48a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FeePayerOrFeePayerAuthenticatorOrNeither.html @@ -0,0 +1 @@ +FeePayerOrFeePayerAuthenticatorOrNeither | @aptos-labs/ts-sdk - v1.33.1

Type Alias FeePayerOrFeePayerAuthenticatorOrNeither

FeePayerOrFeePayerAuthenticatorOrNeither: {
    feePayer: Account;
    feePayerAuthenticator?: never;
} | {
    feePayer?: never;
    feePayerAuthenticator: AccountAuthenticator;
} | {
    feePayer?: never;
    feePayerAuthenticator?: never;
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FungibleAssetActivitiesBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FungibleAssetActivitiesBoolExp.html new file mode 100644 index 000000000..de152f705 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FungibleAssetActivitiesBoolExp.html @@ -0,0 +1,2 @@ +FungibleAssetActivitiesBoolExp | @aptos-labs/ts-sdk - v1.33.1

Type Alias FungibleAssetActivitiesBoolExp

FungibleAssetActivitiesBoolExp: {
    _and?: InputMaybe<FungibleAssetActivitiesBoolExp[]>;
    _not?: InputMaybe<FungibleAssetActivitiesBoolExp>;
    _or?: InputMaybe<FungibleAssetActivitiesBoolExp[]>;
    amount?: InputMaybe<NumericComparisonExp>;
    asset_type?: InputMaybe<StringComparisonExp>;
    block_height?: InputMaybe<BigintComparisonExp>;
    entry_function_id_str?: InputMaybe<StringComparisonExp>;
    event_index?: InputMaybe<BigintComparisonExp>;
    gas_fee_payer_address?: InputMaybe<StringComparisonExp>;
    is_frozen?: InputMaybe<BooleanComparisonExp>;
    is_gas_fee?: InputMaybe<BooleanComparisonExp>;
    is_transaction_success?: InputMaybe<BooleanComparisonExp>;
    metadata?: InputMaybe<FungibleAssetMetadataBoolExp>;
    owner_address?: InputMaybe<StringComparisonExp>;
    owner_aptos_names?: InputMaybe<CurrentAptosNamesBoolExp>;
    owner_aptos_names_aggregate?: InputMaybe<CurrentAptosNamesAggregateBoolExp>;
    storage_id?: InputMaybe<StringComparisonExp>;
    storage_refund_amount?: InputMaybe<NumericComparisonExp>;
    token_standard?: InputMaybe<StringComparisonExp>;
    transaction_timestamp?: InputMaybe<TimestampComparisonExp>;
    transaction_version?: InputMaybe<BigintComparisonExp>;
    type?: InputMaybe<StringComparisonExp>;
}

Boolean expression to filter rows from the table "fungible_asset_activities". All fields are combined with a logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FungibleAssetMetadataBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FungibleAssetMetadataBoolExp.html new file mode 100644 index 000000000..e0babfb69 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.FungibleAssetMetadataBoolExp.html @@ -0,0 +1,2 @@ +FungibleAssetMetadataBoolExp | @aptos-labs/ts-sdk - v1.33.1

Type Alias FungibleAssetMetadataBoolExp

FungibleAssetMetadataBoolExp: {
    _and?: InputMaybe<FungibleAssetMetadataBoolExp[]>;
    _not?: InputMaybe<FungibleAssetMetadataBoolExp>;
    _or?: InputMaybe<FungibleAssetMetadataBoolExp[]>;
    asset_type?: InputMaybe<StringComparisonExp>;
    creator_address?: InputMaybe<StringComparisonExp>;
    decimals?: InputMaybe<IntComparisonExp>;
    icon_uri?: InputMaybe<StringComparisonExp>;
    last_transaction_timestamp?: InputMaybe<TimestampComparisonExp>;
    last_transaction_version?: InputMaybe<BigintComparisonExp>;
    maximum_v2?: InputMaybe<NumericComparisonExp>;
    name?: InputMaybe<StringComparisonExp>;
    project_uri?: InputMaybe<StringComparisonExp>;
    supply_aggregator_table_handle_v1?: InputMaybe<StringComparisonExp>;
    supply_aggregator_table_key_v1?: InputMaybe<StringComparisonExp>;
    supply_v2?: InputMaybe<NumericComparisonExp>;
    symbol?: InputMaybe<StringComparisonExp>;
    token_standard?: InputMaybe<StringComparisonExp>;
}

Boolean expression to filter rows from the table "fungible_asset_metadata". All fields are combined with a logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountCoinsDataQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountCoinsDataQuery.html new file mode 100644 index 000000000..ae6d81508 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountCoinsDataQuery.html @@ -0,0 +1 @@ +GetAccountCoinsDataQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetAccountCoinsDataQuery

GetAccountCoinsDataQuery: {
    current_fungible_asset_balances: {
        amount?: any | null;
        asset_type?: string | null;
        is_frozen: boolean;
        is_primary?: boolean | null;
        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 | null;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountCollectionsWithOwnedTokensQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountCollectionsWithOwnedTokensQuery.html new file mode 100644 index 000000000..0eb3f8f5d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountCollectionsWithOwnedTokensQuery.html @@ -0,0 +1 @@ +GetAccountCollectionsWithOwnedTokensQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetAccountCollectionsWithOwnedTokensQuery

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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountOwnedTokensFromCollectionQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountOwnedTokensFromCollectionQuery.html new file mode 100644 index 000000000..1196a740d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountOwnedTokensFromCollectionQuery.html @@ -0,0 +1 @@ +GetAccountOwnedTokensFromCollectionQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetAccountOwnedTokensFromCollectionQuery

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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountOwnedTokensQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountOwnedTokensQuery.html new file mode 100644 index 000000000..0fd65944b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetAccountOwnedTokensQuery.html @@ -0,0 +1 @@ +GetAccountOwnedTokensQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetAccountOwnedTokensQuery

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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetChainTopUserTransactionsQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetChainTopUserTransactionsQuery.html new file mode 100644 index 000000000..b9686f179 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetChainTopUserTransactionsQuery.html @@ -0,0 +1 @@ +GetChainTopUserTransactionsQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetChainTopUserTransactionsQuery

GetChainTopUserTransactionsQuery: {
    user_transactions: {
        version: any;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCollectionDataQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCollectionDataQuery.html new file mode 100644 index 000000000..1319c08a9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCollectionDataQuery.html @@ -0,0 +1 @@ +GetCollectionDataQuery | @aptos-labs/ts-sdk - v1.33.1
GetCollectionDataQuery: {
    current_collections_v2: {
        cdn_asset_uris?: {
            animation_optimizer_retry_count: number;
            asset_uri: string;
            cdn_animation_uri?: string | null;
            cdn_image_uri?: string | null;
            cdn_json_uri?: string | null;
            image_optimizer_retry_count: number;
            json_parser_retry_count: number;
            raw_animation_uri?: string | null;
            raw_image_uri?: string | null;
        } | null;
        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-1.33.1/types/_internal_.GetCurrentFungibleAssetBalancesQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCurrentFungibleAssetBalancesQuery.html new file mode 100644 index 000000000..99fa40349 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCurrentFungibleAssetBalancesQuery.html @@ -0,0 +1 @@ +GetCurrentFungibleAssetBalancesQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetCurrentFungibleAssetBalancesQuery

GetCurrentFungibleAssetBalancesQuery: {
    current_fungible_asset_balances: {
        amount?: any | null;
        asset_type?: string | null;
        is_frozen: boolean;
        is_primary?: boolean | null;
        last_transaction_timestamp?: any | null;
        last_transaction_version?: any | null;
        owner_address: string;
        storage_id: string;
        token_standard?: string | null;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCurrentTokenOwnershipQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCurrentTokenOwnershipQuery.html new file mode 100644 index 000000000..6bc88dd3a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetCurrentTokenOwnershipQuery.html @@ -0,0 +1 @@ +GetCurrentTokenOwnershipQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetCurrentTokenOwnershipQuery

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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetDelegatedStakingActivitiesQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetDelegatedStakingActivitiesQuery.html new file mode 100644 index 000000000..590bffaea --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetDelegatedStakingActivitiesQuery.html @@ -0,0 +1 @@ +GetDelegatedStakingActivitiesQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetDelegatedStakingActivitiesQuery

GetDelegatedStakingActivitiesQuery: {
    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-1.33.1/types/_internal_.GetEventsQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetEventsQuery.html new file mode 100644 index 000000000..e31474e31 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetEventsQuery.html @@ -0,0 +1 @@ +GetEventsQuery | @aptos-labs/ts-sdk - v1.33.1
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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetFungibleAssetActivitiesQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetFungibleAssetActivitiesQuery.html new file mode 100644 index 000000000..e6a03d481 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetFungibleAssetActivitiesQuery.html @@ -0,0 +1 @@ +GetFungibleAssetActivitiesQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetFungibleAssetActivitiesQuery

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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetFungibleAssetMetadataQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetFungibleAssetMetadataQuery.html new file mode 100644 index 000000000..7b58a8aa3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetFungibleAssetMetadataQuery.html @@ -0,0 +1 @@ +GetFungibleAssetMetadataQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetFungibleAssetMetadataQuery

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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetNamesQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetNamesQuery.html new file mode 100644 index 000000000..ef81fcc39 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetNamesQuery.html @@ -0,0 +1 @@ +GetNamesQuery | @aptos-labs/ts-sdk - v1.33.1
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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetNumberOfDelegatorsQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetNumberOfDelegatorsQuery.html new file mode 100644 index 000000000..e5a996143 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetNumberOfDelegatorsQuery.html @@ -0,0 +1 @@ +GetNumberOfDelegatorsQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetNumberOfDelegatorsQuery

GetNumberOfDelegatorsQuery: {
    num_active_delegator_per_pool: {
        num_active_delegator?: any | null;
        pool_address?: string | null;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetObjectDataQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetObjectDataQuery.html new file mode 100644 index 000000000..1ca0e56ae --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetObjectDataQuery.html @@ -0,0 +1 @@ +GetObjectDataQuery | @aptos-labs/ts-sdk - v1.33.1
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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetProcessorStatusQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetProcessorStatusQuery.html new file mode 100644 index 000000000..fbcdeb952 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetProcessorStatusQuery.html @@ -0,0 +1 @@ +GetProcessorStatusQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetProcessorStatusQuery

GetProcessorStatusQuery: {
    processor_status: {
        last_success_version: any;
        last_updated: any;
        processor: string;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTableItemsDataQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTableItemsDataQuery.html new file mode 100644 index 000000000..65bc42b95 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTableItemsDataQuery.html @@ -0,0 +1 @@ +GetTableItemsDataQuery | @aptos-labs/ts-sdk - v1.33.1
GetTableItemsDataQuery: {
    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-1.33.1/types/_internal_.GetTableItemsMetadataQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTableItemsMetadataQuery.html new file mode 100644 index 000000000..8b83c900d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTableItemsMetadataQuery.html @@ -0,0 +1 @@ +GetTableItemsMetadataQuery | @aptos-labs/ts-sdk - v1.33.1

Type Alias GetTableItemsMetadataQuery

GetTableItemsMetadataQuery: {
    table_metadatas: {
        handle: string;
        key_type: string;
        value_type: string;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTokenActivityQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTokenActivityQuery.html new file mode 100644 index 000000000..f149f842a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTokenActivityQuery.html @@ -0,0 +1 @@ +GetTokenActivityQuery | @aptos-labs/ts-sdk - v1.33.1
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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTokenDataQuery.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTokenDataQuery.html new file mode 100644 index 000000000..824e6e15e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.GetTokenDataQuery.html @@ -0,0 +1 @@ +GetTokenDataQuery | @aptos-labs/ts-sdk - v1.33.1
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;
    }[];
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Groth16VerificationKeyResponse.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Groth16VerificationKeyResponse.html new file mode 100644 index 000000000..44072f782 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Groth16VerificationKeyResponse.html @@ -0,0 +1,2 @@ +Groth16VerificationKeyResponse | @aptos-labs/ts-sdk - v1.33.1

Type Alias Groth16VerificationKeyResponse

Groth16VerificationKeyResponse: {
    alpha_g1: string;
    beta_g2: string;
    delta_g2: string;
    gamma_abc_g1: [string, string];
    gamma_g2: string;
}

The response containing the Groth16 verification key, including the alpha_g1 component.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.InputMaybe.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.InputMaybe.html new file mode 100644 index 000000000..83b71a28c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.InputMaybe.html @@ -0,0 +1 @@ +InputMaybe | @aptos-labs/ts-sdk - v1.33.1
InputMaybe<T>: Maybe<T>

Type Parameters

  • T
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.IntComparisonExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.IntComparisonExp.html new file mode 100644 index 000000000..cb81b037e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.IntComparisonExp.html @@ -0,0 +1,2 @@ +IntComparisonExp | @aptos-labs/ts-sdk - v1.33.1
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"][]>;
}

Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.JsonbCastExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.JsonbCastExp.html new file mode 100644 index 000000000..ccd3729dc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.JsonbCastExp.html @@ -0,0 +1 @@ +JsonbCastExp | @aptos-labs/ts-sdk - v1.33.1
JsonbCastExp: {
    String?: InputMaybe<StringComparisonExp>;
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.JsonbComparisonExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.JsonbComparisonExp.html new file mode 100644 index 000000000..a0c3dd657 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.JsonbComparisonExp.html @@ -0,0 +1,7 @@ +JsonbComparisonExp | @aptos-labs/ts-sdk - v1.33.1
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"][]>;
}

Boolean expression to compare columns of type "jsonb". All fields are combined with logical 'AND'.

+

Type declaration

diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Maybe.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Maybe.html new file mode 100644 index 000000000..eee307242 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Maybe.html @@ -0,0 +1 @@ +Maybe | @aptos-labs/ts-sdk - v1.33.1
Maybe<T>: T | null

Type Parameters

  • T
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.MoveAnyStruct.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.MoveAnyStruct.html new file mode 100644 index 000000000..177608158 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.MoveAnyStruct.html @@ -0,0 +1 @@ +MoveAnyStruct | @aptos-labs/ts-sdk - v1.33.1
MoveAnyStruct: {
    variant: {
        data: string;
        type_name: string;
    };
}
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.NumericComparisonExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.NumericComparisonExp.html new file mode 100644 index 000000000..e78ab6fd8 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.NumericComparisonExp.html @@ -0,0 +1,2 @@ +NumericComparisonExp | @aptos-labs/ts-sdk - v1.33.1
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"][]>;
}

Boolean expression to compare columns of type "numeric". All fields are combined with logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Omit.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Omit.html new file mode 100644 index 000000000..6a25ac9d9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Omit.html @@ -0,0 +1,2 @@ +Omit | @aptos-labs/ts-sdk - v1.33.1
Omit<T, K>: 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-1.33.1/types/_internal_.Parameters.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Parameters.html new file mode 100644 index 000000000..d429ec5ad --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Parameters.html @@ -0,0 +1,2 @@ +Parameters | @aptos-labs/ts-sdk - v1.33.1
Parameters<T>: 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-1.33.1/types/_internal_.Pick.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Pick.html new file mode 100644 index 000000000..aa8fcb9c9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Pick.html @@ -0,0 +1,2 @@ +Pick | @aptos-labs/ts-sdk - v1.33.1
Pick<T, K>: {
    [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-1.33.1/types/_internal_.PropertyValue.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.PropertyValue.html new file mode 100644 index 000000000..27bae780d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.PropertyValue.html @@ -0,0 +1,4 @@ +PropertyValue | @aptos-labs/ts-sdk - v1.33.1
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-1.33.1/types/_internal_.Record.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Record.html new file mode 100644 index 000000000..c3dff27aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Record.html @@ -0,0 +1,2 @@ +Record | @aptos-labs/ts-sdk - v1.33.1

Type Alias Record<K, T>

Record<K, T>: {
    [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-1.33.1/types/_internal_.Scalars.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Scalars.html new file mode 100644 index 000000000..5c3d01b3b --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.Scalars.html @@ -0,0 +1,2 @@ +Scalars | @aptos-labs/ts-sdk - v1.33.1
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;
    };
    timestamptz: {
        input: any;
        output: any;
    };
}

All built-in and custom scalars, mapped to their actual values

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.StringComparisonExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.StringComparisonExp.html new file mode 100644 index 000000000..5f1af3f9d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.StringComparisonExp.html @@ -0,0 +1,12 @@ +StringComparisonExp | @aptos-labs/ts-sdk - v1.33.1
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"]>;
}

Boolean expression to compare columns of type "String". All fields are combined with logical 'AND'.

+

Type declaration

  • Optional_eq?: InputMaybe<Scalars["String"]["input"]>
  • Optional_gt?: InputMaybe<Scalars["String"]["input"]>
  • Optional_gte?: InputMaybe<Scalars["String"]["input"]>
  • Optional_ilike?: InputMaybe<Scalars["String"]["input"]>

    does the column match the given case-insensitive pattern

    +
  • Optional_in?: InputMaybe<Scalars["String"]["input"][]>
  • Optional_iregex?: InputMaybe<Scalars["String"]["input"]>

    does the column match the given POSIX regular expression, case insensitive

    +
  • Optional_is_null?: InputMaybe<Scalars["Boolean"]["input"]>
  • Optional_like?: InputMaybe<Scalars["String"]["input"]>

    does the column match the given pattern

    +
  • Optional_lt?: InputMaybe<Scalars["String"]["input"]>
  • Optional_lte?: InputMaybe<Scalars["String"]["input"]>
  • Optional_neq?: InputMaybe<Scalars["String"]["input"]>
  • Optional_nilike?: InputMaybe<Scalars["String"]["input"]>

    does the column NOT match the given case-insensitive pattern

    +
  • Optional_nin?: InputMaybe<Scalars["String"]["input"][]>
  • Optional_niregex?: InputMaybe<Scalars["String"]["input"]>

    does the column NOT match the given POSIX regular expression, case insensitive

    +
  • Optional_nlike?: InputMaybe<Scalars["String"]["input"]>

    does the column NOT match the given pattern

    +
  • Optional_nregex?: InputMaybe<Scalars["String"]["input"]>

    does the column NOT match the given POSIX regular expression, case sensitive

    +
  • Optional_nsimilar?: InputMaybe<Scalars["String"]["input"]>

    does the column NOT match the given SQL regular expression

    +
  • Optional_regex?: InputMaybe<Scalars["String"]["input"]>

    does the column match the given POSIX regular expression, case sensitive

    +
  • Optional_similar?: InputMaybe<Scalars["String"]["input"]>

    does the column match the given SQL regular expression

    +
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TableItemsBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TableItemsBoolExp.html new file mode 100644 index 000000000..c22e63876 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TableItemsBoolExp.html @@ -0,0 +1,2 @@ +TableItemsBoolExp | @aptos-labs/ts-sdk - v1.33.1
TableItemsBoolExp: {
    _and?: InputMaybe<TableItemsBoolExp[]>;
    _not?: InputMaybe<TableItemsBoolExp>;
    _or?: InputMaybe<TableItemsBoolExp[]>;
    decoded_key?: InputMaybe<JsonbComparisonExp>;
    decoded_value?: InputMaybe<JsonbComparisonExp>;
    key?: InputMaybe<StringComparisonExp>;
    table_handle?: InputMaybe<StringComparisonExp>;
    transaction_version?: InputMaybe<BigintComparisonExp>;
    write_set_change_index?: InputMaybe<BigintComparisonExp>;
}

Boolean expression to filter rows from the table "table_items". All fields are combined with a logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TableMetadatasBoolExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TableMetadatasBoolExp.html new file mode 100644 index 000000000..04aa3c81c --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TableMetadatasBoolExp.html @@ -0,0 +1,2 @@ +TableMetadatasBoolExp | @aptos-labs/ts-sdk - v1.33.1
TableMetadatasBoolExp: {
    _and?: InputMaybe<TableMetadatasBoolExp[]>;
    _not?: InputMaybe<TableMetadatasBoolExp>;
    _or?: InputMaybe<TableMetadatasBoolExp[]>;
    handle?: InputMaybe<StringComparisonExp>;
    key_type?: InputMaybe<StringComparisonExp>;
    value_type?: InputMaybe<StringComparisonExp>;
}

Boolean expression to filter rows from the table "table_metadatas". All fields are combined with a logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TimestampComparisonExp.html b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TimestampComparisonExp.html new file mode 100644 index 000000000..27ca565f6 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/types/_internal_.TimestampComparisonExp.html @@ -0,0 +1,2 @@ +TimestampComparisonExp | @aptos-labs/ts-sdk - v1.33.1
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"][]>;
}

Boolean expression to compare columns of type "timestamp". All fields are combined with logical 'AND'.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_BIP44_REGEX.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_BIP44_REGEX.html new file mode 100644 index 000000000..2d3885415 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_BIP44_REGEX.html @@ -0,0 +1 @@ +APTOS_BIP44_REGEX | @aptos-labs/ts-sdk - v1.33.1

Variable APTOS_BIP44_REGEXConst

APTOS_BIP44_REGEX: RegExp = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_COIN.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_COIN.html new file mode 100644 index 000000000..2a3b72871 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_COIN.html @@ -0,0 +1,2 @@ +APTOS_COIN | @aptos-labs/ts-sdk - v1.33.1

Variable APTOS_COINConst

APTOS_COIN = "0x1::aptos_coin::AptosCoin"

The default gas currency for the network.

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_FA.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_FA.html new file mode 100644 index 000000000..afb25f923 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_FA.html @@ -0,0 +1 @@ +APTOS_FA | @aptos-labs/ts-sdk - v1.33.1

Variable APTOS_FAConst

APTOS_FA = "0x000000000000000000000000000000000000000000000000000000000000000a"
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_HARDENED_REGEX.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_HARDENED_REGEX.html new file mode 100644 index 000000000..4e0cdc044 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/APTOS_HARDENED_REGEX.html @@ -0,0 +1,2 @@ +APTOS_HARDENED_REGEX | @aptos-labs/ts-sdk - v1.33.1

Variable APTOS_HARDENED_REGEXConst

APTOS_HARDENED_REGEX: RegExp = ...

Aptos derive path is 637

+
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/DEFAULT_MAX_GAS_AMOUNT.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/DEFAULT_MAX_GAS_AMOUNT.html new file mode 100644 index 000000000..7e075eae9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/DEFAULT_MAX_GAS_AMOUNT.html @@ -0,0 +1,5 @@ +DEFAULT_MAX_GAS_AMOUNT | @aptos-labs/ts-sdk - v1.33.1

Variable DEFAULT_MAX_GAS_AMOUNTConst

DEFAULT_MAX_GAS_AMOUNT = 200000

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-1.33.1/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html new file mode 100644 index 000000000..ba27710e3 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/DEFAULT_TXN_EXP_SEC_FROM_NOW.html @@ -0,0 +1,5 @@ +DEFAULT_TXN_EXP_SEC_FROM_NOW | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/variables/DEFAULT_TXN_TIMEOUT_SEC.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/DEFAULT_TXN_TIMEOUT_SEC.html new file mode 100644 index 000000000..882be1788 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/DEFAULT_TXN_TIMEOUT_SEC.html @@ -0,0 +1,4 @@ +DEFAULT_TXN_TIMEOUT_SEC | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/variables/EPK_HORIZON_SECS.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/EPK_HORIZON_SECS.html new file mode 100644 index 000000000..de86a45f9 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/EPK_HORIZON_SECS.html @@ -0,0 +1 @@ +EPK_HORIZON_SECS | @aptos-labs/ts-sdk - v1.33.1

Variable EPK_HORIZON_SECSConst

EPK_HORIZON_SECS = 10000000
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/FIREBASE_AUTH_ISS_PATTERN.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/FIREBASE_AUTH_ISS_PATTERN.html new file mode 100644 index 000000000..15b367555 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/FIREBASE_AUTH_ISS_PATTERN.html @@ -0,0 +1,4 @@ +FIREBASE_AUTH_ISS_PATTERN | @aptos-labs/ts-sdk - v1.33.1

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-1.33.1/variables/HARDENED_OFFSET.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/HARDENED_OFFSET.html new file mode 100644 index 000000000..015b2a1bc --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/HARDENED_OFFSET.html @@ -0,0 +1 @@ +HARDENED_OFFSET | @aptos-labs/ts-sdk - v1.33.1

Variable HARDENED_OFFSETConst

HARDENED_OFFSET: 2147483648 = 0x80000000
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_AUD_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_AUD_VAL_BYTES.html new file mode 100644 index 000000000..e12d1766f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_AUD_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_AUD_VAL_BYTES | @aptos-labs/ts-sdk - v1.33.1

Variable MAX_AUD_VAL_BYTESConst

MAX_AUD_VAL_BYTES = 120
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_COMMITED_EPK_BYTES.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_COMMITED_EPK_BYTES.html new file mode 100644 index 000000000..179c069e7 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_COMMITED_EPK_BYTES.html @@ -0,0 +1 @@ +MAX_COMMITED_EPK_BYTES | @aptos-labs/ts-sdk - v1.33.1

Variable MAX_COMMITED_EPK_BYTESConst

MAX_COMMITED_EPK_BYTES = 93
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_EXTRA_FIELD_BYTES.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_EXTRA_FIELD_BYTES.html new file mode 100644 index 000000000..d62197b26 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_EXTRA_FIELD_BYTES.html @@ -0,0 +1 @@ +MAX_EXTRA_FIELD_BYTES | @aptos-labs/ts-sdk - v1.33.1

Variable MAX_EXTRA_FIELD_BYTESConst

MAX_EXTRA_FIELD_BYTES = 350
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_ISS_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_ISS_VAL_BYTES.html new file mode 100644 index 000000000..40b783b2f --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_ISS_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_ISS_VAL_BYTES | @aptos-labs/ts-sdk - v1.33.1

Variable MAX_ISS_VAL_BYTESConst

MAX_ISS_VAL_BYTES = 120
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_JWT_HEADER_B64_BYTES.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_JWT_HEADER_B64_BYTES.html new file mode 100644 index 000000000..7540bf39e --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_JWT_HEADER_B64_BYTES.html @@ -0,0 +1 @@ +MAX_JWT_HEADER_B64_BYTES | @aptos-labs/ts-sdk - v1.33.1

Variable MAX_JWT_HEADER_B64_BYTESConst

MAX_JWT_HEADER_B64_BYTES = 300
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_UID_KEY_BYTES.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_UID_KEY_BYTES.html new file mode 100644 index 000000000..952652765 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_UID_KEY_BYTES.html @@ -0,0 +1 @@ +MAX_UID_KEY_BYTES | @aptos-labs/ts-sdk - v1.33.1

Variable MAX_UID_KEY_BYTESConst

MAX_UID_KEY_BYTES = 30
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_UID_VAL_BYTES.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_UID_VAL_BYTES.html new file mode 100644 index 000000000..77ede6025 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/MAX_UID_VAL_BYTES.html @@ -0,0 +1 @@ +MAX_UID_VAL_BYTES | @aptos-labs/ts-sdk - v1.33.1

Variable MAX_UID_VAL_BYTESConst

MAX_UID_VAL_BYTES = 330
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToChainId.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToChainId.html new file mode 100644 index 000000000..6fb2c8e1a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToChainId.html @@ -0,0 +1 @@ +NetworkToChainId | @aptos-labs/ts-sdk - v1.33.1

Variable NetworkToChainIdConst

NetworkToChainId: Record<string, number> = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToFaucetAPI.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToFaucetAPI.html new file mode 100644 index 000000000..1e8350da4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToFaucetAPI.html @@ -0,0 +1 @@ +NetworkToFaucetAPI | @aptos-labs/ts-sdk - v1.33.1

Variable NetworkToFaucetAPIConst

NetworkToFaucetAPI: Record<string, string> = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToIndexerAPI.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToIndexerAPI.html new file mode 100644 index 000000000..19da4ca88 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToIndexerAPI.html @@ -0,0 +1 @@ +NetworkToIndexerAPI | @aptos-labs/ts-sdk - v1.33.1

Variable NetworkToIndexerAPIConst

NetworkToIndexerAPI: Record<string, string> = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToNetworkName.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToNetworkName.html new file mode 100644 index 000000000..e4164be25 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToNetworkName.html @@ -0,0 +1 @@ +NetworkToNetworkName | @aptos-labs/ts-sdk - v1.33.1

Variable NetworkToNetworkNameConst

NetworkToNetworkName: Record<string, Network> = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToNodeAPI.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToNodeAPI.html new file mode 100644 index 000000000..1824a393a --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToNodeAPI.html @@ -0,0 +1 @@ +NetworkToNodeAPI | @aptos-labs/ts-sdk - v1.33.1

Variable NetworkToNodeAPIConst

NetworkToNodeAPI: Record<string, string> = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToPepperAPI.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToPepperAPI.html new file mode 100644 index 000000000..b9ec94be4 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToPepperAPI.html @@ -0,0 +1 @@ +NetworkToPepperAPI | @aptos-labs/ts-sdk - v1.33.1

Variable NetworkToPepperAPIConst

NetworkToPepperAPI: Record<string, string> = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToProverAPI.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToProverAPI.html new file mode 100644 index 000000000..be3b125aa --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/NetworkToProverAPI.html @@ -0,0 +1 @@ +NetworkToProverAPI | @aptos-labs/ts-sdk - v1.33.1

Variable NetworkToProverAPIConst

NetworkToProverAPI: Record<string, string> = ...
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/RAW_TRANSACTION_SALT.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/RAW_TRANSACTION_SALT.html new file mode 100644 index 000000000..e98fdd940 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/RAW_TRANSACTION_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_SALT | @aptos-labs/ts-sdk - v1.33.1

Variable RAW_TRANSACTION_SALTConst

RAW_TRANSACTION_SALT = "APTOS::RawTransaction"
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/RAW_TRANSACTION_WITH_DATA_SALT.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/RAW_TRANSACTION_WITH_DATA_SALT.html new file mode 100644 index 000000000..511186092 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/RAW_TRANSACTION_WITH_DATA_SALT.html @@ -0,0 +1 @@ +RAW_TRANSACTION_WITH_DATA_SALT | @aptos-labs/ts-sdk - v1.33.1

Variable RAW_TRANSACTION_WITH_DATA_SALTConst

RAW_TRANSACTION_WITH_DATA_SALT = "APTOS::RawTransactionWithData"
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/_internal_.Error-1.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/_internal_.Error-1.html new file mode 100644 index 000000000..82839019d --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/_internal_.Error-1.html @@ -0,0 +1 @@ +Error | @aptos-labs/ts-sdk - v1.33.1
Error: ErrorConstructor
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/_internal_.EventEmitter.EventEmitter.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/_internal_.EventEmitter.EventEmitter.html new file mode 100644 index 000000000..e2daba4f2 --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/_internal_.EventEmitter.EventEmitter.html @@ -0,0 +1 @@ +EventEmitter | @aptos-labs/ts-sdk - v1.33.1
EventEmitter: EventEmitterStatic
diff --git a/docs/@aptos-labs/ts-sdk-1.33.1/variables/promiseFulfilledStatus.html b/docs/@aptos-labs/ts-sdk-1.33.1/variables/promiseFulfilledStatus.html new file mode 100644 index 000000000..dd9e171fd --- /dev/null +++ b/docs/@aptos-labs/ts-sdk-1.33.1/variables/promiseFulfilledStatus.html @@ -0,0 +1 @@ +promiseFulfilledStatus | @aptos-labs/ts-sdk - v1.33.1

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 4d56af278..273fc5c0f 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-1.33.0 +redirect_to: /@aptos-labs/ts-sdk-1.33.1 --- diff --git a/docs/index.md b/docs/index.md index cc95a2d90..02b0a539d 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-1.33.1](@aptos-labs/ts-sdk-1.33.1) - [Stable - @aptos-labs/ts-sdk-1.33.0](@aptos-labs/ts-sdk-1.33.0) - [Stable - @aptos-labs/ts-sdk-1.32.1](@aptos-labs/ts-sdk-1.32.1) - [Stable - @aptos-labs/ts-sdk-1.32.0](@aptos-labs/ts-sdk-1.32.0) diff --git a/package.json b/package.json index 9c40e131b..9675a0db0 100644 --- a/package.json +++ b/package.json @@ -96,5 +96,5 @@ "typedoc-plugin-missing-exports": "^3.0.0", "typescript": "^5.6.2" }, - "version": "1.33.0" + "version": "1.33.1" } \ No newline at end of file diff --git a/src/version.ts b/src/version.ts index adf2134e8..179988b56 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 = "1.33.0"; +export const VERSION = "1.33.1";