Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The typescript sdk delineates all of the getter endpoints in the main SDK. For example

Code Block
            case 'getFeegetFioNames':
                return this.getFeegetFioNames(params.endPoint, params.fioAddressfioPublicKey);
            case 'getFeeForRecordObtDatagetFioDomains':
                return this.getFeeForRecordObtDatagetFioDomains(params.payerFioAddress);
            case 'getFeeForNewFundsRequest':
                return this.getFeeForNewFundsRequest(params.payeeFioAddressfioPublicKey, params.limit, params.offset);
            case 'getFeeForRejectFundsRequestgetFioAddresses':
                return this.getFeeForRejectFundsRequestgetFioAddresses(params.payerFioAddress);
            case 'getFeeForBurnFioAddress':
                return this.getFeeForBurnFioAddress(params.fioAddress);
fioPublicKey, params.limit, params.offset);
               case 'getFeeForTransferFioAddressgetPendingFioRequests':
                return this.getFeeForTransferFioAddressgetPendingFioRequests(params.limit, params.fioAddressoffset);
            case 'getFeeForTransferFioDomaingetCancelledFioRequests':
                return this.getFeeForTransferFioDomaingetCancelledFioRequests(params.limit, params.fioAddressoffset);
            case 'getFeeForAddPublicAddressgetSentFioRequests':
                return this.getFeeForAddPublicAddressgetSentFioRequests(params.fioAddress);
            case 'getFeeForCancelFundsRequest':
                return this.getFeeForCancelFundsRequest(params.fioAddresslimit, params.offset);
            case 'getFeeForRemovePublicAddressesgetPublicAddress':
                return this.getFeeForRemovePublicAddressesgetPublicAddress(params.fioAddress);
            case 'getFeeForRemoveAllPublicAddresses':
                return this.getFeeForRemoveAllPublicAddresses(params.fioAddress, params.chainCode, params.tokenCode);
                
                etc...

Examples of new endpoints

...