Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Wallets V1
Swift Protocol
protocol SmartWalletService : AuthenticatedService
var isProductionEnvironment: Bool { get }
func addSigner(_ entry: DelegatedSignerEntry, chainType: ChainType, chainName: String) async throws(WalletError) -> AddDelegatedSignerResponse
func approveSignature(_ request: SignRequest) async throws(SignatureError)
func createSignature(_ request: CreateSignatureRequest) async throws(SignatureError) -> any SignatureApiModel
func createTransaction(_ request: CreateTransactionRequest) async throws(TransactionError) -> any TransactionApiModel
func createWallet(_ request: CreateWalletParams) async throws(WalletError) -> WalletApiModel
func fetchSignature(_ signatureId: String, chainType: ChainType) async throws(SignatureError) -> any SignatureApiModel
func fetchTransaction(_ fetchTransactionRequest: FetchTransactionRequest) async throws(TransactionError) -> any TransactionApiModel
func fund(_ request: FundWalletRequest) async throws(WalletError)
func getBalance(_ params: GetBalanceQueryParams) async throws(WalletError) -> Balances
func getNFTs(_ params: GetNTFQueryParams) async throws(WalletError) -> [NFT]
func getWallet(_ request: GetMeWalletRequest) async throws(WalletError) -> WalletApiModel
func listTransfers(_ params: ListTransfersQueryParams) async throws(WalletError) -> TransferListResult
func removeSigner(_ signerLocator: String, chainType: ChainType, chainName: String) async throws(TransactionError) -> any TransactionApiModel
func signTransaction(_ request: SignRequest) async throws(TransactionError) -> any TransactionApiModel
func transferToken(chainType: String, tokenLocator: String, recipient: String, amount: String, signer: String?, idempotencyKey: String?) async throws(TransactionError) -> any TransactionApiModel
Was this page helpful?