Skip to content

Commit b608a0b

Browse files
committed
Update framework to v2.0.0
1 parent 2ced0a3 commit b608a0b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+384
-33
lines changed

Examples/ObjC-DemoApp/DemoApp.xcodeproj/project.pbxproj

100644100755
File mode changed.

Examples/ObjC-DemoApp/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata

100644100755
File mode changed.

Examples/ObjC-DemoApp/DemoApp/AppDelegate.h

100644100755
File mode changed.

Examples/ObjC-DemoApp/DemoApp/AppDelegate.m

100644100755
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ @implementation AppDelegate
1111

1212
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
1313
#pragma mark 1. Register your app
14-
[WombatAuth.shared registerAppWithName:@"Testing App" icon:[NSURL URLWithString:@"https://assets.website-files.com/5cde8c951beecf3604688a58/5d120b2cba030f78d70c7236_Wombat_logo_transparent-p-500.png"]];
14+
// You can optionally also specify `chainID`. If omitted, the wallet will use the EOS blockchain as default
15+
[WombatAuth.shared registerAppWithName:@"Testing App" icon:[NSURL URLWithString:@"https://assets.website-files.com/5cde8c951beecf3604688a58/5d120b2cba030f78d70c7236_Wombat_logo_transparent-p-500.png"] chainID: nil];
1516
return YES;
1617
}
1718

@@ -33,7 +34,7 @@ - (BOOL)application:(UIApplication *)app openURL:(NSURL *)url options:(NSDiction
3334
[self showAlertWithTitle:@"Push" message:transactionID];
3435
break;
3536
}
36-
case WMActionTypeSignTransaction: {
37+
case WMActionTypeSignData: {
3738
NSString *signature = [result.data valueForKey:@"signature"];
3839
[self showAlertWithTitle:@"Sign" message:signature];
3940
break;

Examples/ObjC-DemoApp/DemoApp/Base.lproj/Main.storyboard

100644100755
File mode changed.

Examples/ObjC-DemoApp/DemoApp/Info.plist

100644100755
File mode changed.

Examples/ObjC-DemoApp/DemoApp/ViewController.h

100644100755
File mode changed.

Examples/ObjC-DemoApp/DemoApp/ViewController.m

100644100755
File mode changed.

Examples/ObjC-DemoApp/DemoApp/main.m

100644100755
File mode changed.

0 commit comments

Comments
 (0)