This package contains an Angular service for easy communication with Steem Keychain browser extension.
Every method available on the global steem_keychain
object
is wrapped so that an observable is returned.
npm install --save @steeveproject/ngx-steem-keychain
export class FoobarComponent {
constructor(
private steemKeychain: SteemKeychainService
) { }
doKeychainHandshake(): Observable<Response> {
return this.steemKeychain.requestHandshake();
}
}
In this case code is the best documentation since the module is pretty small.
Please check src/steem-keychain.service.ts
for all available methods.
@tchap created this package when working on Steeve.
This package is MIT-licensed.
angular-library-started was used to bootstrap this package.