iota-sdk 0.3.0

The IOTA SDK provides developers with a seamless experience to develop on IOTA by providing account abstractions and clients to interact with node APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

#import <Foundation/Foundation.h>
#import <Capacitor/Capacitor.h>

CAP_PLUGIN(IotaWalletMobile, "IotaWalletMobile",
    CAP_PLUGIN_METHOD(initLogger, CAPPluginReturnPromise);
    CAP_PLUGIN_METHOD(messageHandlerNew, CAPPluginReturnPromise);
    CAP_PLUGIN_METHOD(sendMessage, CAPPluginReturnPromise);
    CAP_PLUGIN_METHOD(listen, CAPPluginReturnCallback);
    CAP_PLUGIN_METHOD(destroy, CAPPluginReturnPromise);
)