
Research
/Security News
77 Firefox Extensions Linked to Crypto Wallet and Credential Theft
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.
@ffn/partner-sdk
Advanced tools
Use npm or yarn for usage in your project.
npm install --save @ffn/partner-sdk
or
yarn add @ffn/partner-sdk
For browser
<script src="https://unpkg.com/@ffn/partner-sdk@1.1.0/dist/index.min.js"></script>
<!-- This will add FFAMPartner as global -->
import {Widget} from '@ffn/partner-sdk'
let element = document.getElementById("iframe-wrapper");
let widget = await Widget.create(element, {
partnerId: 'PARTNER_ID',
env: "dev"
})
For Browser
let element = document.getElementById("iframe-wrapper");
let widget = await FFAMPartner.Widget.create(element, {
partnerId: 'PARTNER_ID',
env: 'dev',
product: 'fdr'
})
{
status: 'accepted' | 'rejected'
reject_reason: string;
recommendation?:'green'|'red'
first_name: string;
last_name: string;
email: string;
day_phone: string;
mailing_address: {
street: string;
zip: string;
city: string;
state: string;
};
date_of_birth: string;
loan_amount: number;
annual_income: number;
co_app_annual_income: number;
loan_purpose: string;
employment_status: string;
credit_rating: string;
}
{
partnerId: string
env: 'local' | 'dev' | 'stg' | 'prd'
showTransferButton?: boolean
leadData?: Partial<Lead>
helpText?: {
[field: string]: string
}
}
####Hooks
widget.onUpdateLead((lead) => {
console.info("Iframe says: Lead changed ", lead)
})
widget.onDecision((lead) => {
console.info("Iframe says: Lead decision ", lead)
})
widget.onRequestCreditAuth(async (lead) => {
console.info('Iframe says: Request credit auth...', lead)
//NOTE: this is async function, application will wait on this hook
})
widget.onClickTransfer(() => {
console.info("Iframe says: Transfer click")
})
FAQs
Use npm or yarn for usage in your project.
The npm package @ffn/partner-sdk receives a total of 0 weekly downloads. As such, @ffn/partner-sdk popularity was classified as not popular.
We found that @ffn/partner-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 21 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket uncovered 77 linked Firefox extensions, including 40 that steal wallet secrets or credentials and 37 deceptive sports-score shells.

Security News
NIST disclosed an unreleased AI tool called V-etalon and opened a broad inquiry into NVD modernization after years of automation plans produced no public enrichment system.

Security News
In his AI Council 2026 talk, Feross Aboukhadijeh covers recent package compromises, vulnerability discovery, and a more automated security model.