Skip to content

Commit

Permalink
Merge pull request #2 from wharfkit/apporc_logout
Browse files Browse the repository at this point in the history
Move login to handleLogin
  • Loading branch information
aaroncox authored Apr 27, 2024
2 parents 81f2502 + edc8f89 commit 9e60ef4
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
import {Api, JsonRpc} from 'eosjs'
import {ScatterAccount, ScatterEOS, ScatterIdentity, ScatterJS} from 'scatter-ts'

export async function getScatter(context): Promise<{account: ScatterAccount; connector: any}> {
export async function getScatter(context): Promise<{scatter: any; connector: any}> {
// register scatter plugins
ScatterJS.plugins(new ScatterEOS())

Expand All @@ -37,20 +37,13 @@ export async function getScatter(context): Promise<{account: ScatterAccount; con
throw new Error('Unable to connect with Scatter wallet')
}

// Ensure connection and get identity
const scatterIdentity: ScatterIdentity = await ScatterJS.login()
if (!scatterIdentity || !scatterIdentity.accounts) {
throw new Error('Unable to retrieve account from Scatter')
}
const account: ScatterAccount = scatterIdentity.accounts[0]

// Establish connector
const rpc = new JsonRpc(network.fullhost())
rpc.getRequiredKeys = async () => [] // Hacky way to get around getRequiredKeys
const connector = ScatterJS.eos(network, Api, {rpc})

return {
account,
scatter: ScatterJS,
connector,
}
}
Expand All @@ -63,7 +56,15 @@ export async function handleLogin(context: LoginContext): Promise<WalletPluginLo
// Retrieve translation helper from the UI, passing the app ID
// const t = context.ui.getTranslate(this.id)

const {account} = await getScatter(context)
const {scatter} = await getScatter(context)

// login
const scatterIdentity: ScatterIdentity = await scatter.login()
if (!scatterIdentity || !scatterIdentity.accounts) {
throw new Error('Unable to retrieve account from Scatter')
}
const account: ScatterAccount = scatterIdentity.accounts[0]

let chainId: string
if (account.chainId) {
chainId = account.chainId
Expand Down Expand Up @@ -94,7 +95,12 @@ export async function handleSignatureRequest(
// const t = context.ui.getTranslate(this.id)

// Get the connector from Scatter
const {connector} = await getScatter(context)
const {scatter, connector} = await getScatter(context)

const currentIdentity: ScatterIdentity = await scatter.checkLogin()
if (!currentIdentity || !currentIdentity.accounts) {
throw new Error('Please login first')
}

// Encode the resolved transaction
const encoded = Serializer.encode({object: resolved.transaction})
Expand Down

0 comments on commit 9e60ef4

Please sign in to comment.