Skip to content

Instantly share code, notes, and snippets.

View merenkoff's full-sized avatar
:octocat:
Focusing

Serg Merenkov merenkoff

:octocat:
Focusing
View GitHub Profile
#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 {
@bogdan
bogdan / text.txt
Last active January 26, 2021 13:10
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,