This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
@interface Node : NSObject | |
@property (nonatomic) NSInteger identifier; | |
@property (nonatomic, copy) NSString *value; | |
+ (Node *)nodeWithIdentifier:(NSInteger)identifier value:(NSString *)value; | |
@end | |
@implementation Node | |
+ (Node *)nodeWithIdentifier:(NSInteger)identifier value:(NSString *)value { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GET /resellers/<name>/txs/messageToSign | |
type MetaTxMethod = 'resolveTo' | 'reconfigure' | 'setMany' | 'transferFrom'; | |
type MetaTxParams<T extends MetaTxMethod> = { | |
keys: string[], | |
values: string[], | |
} | {to: string} | | |
Req: { | |
method: MetaTxMethod, |