
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@gr4vy/embed-react
Advanced tools
Embed a credit card form in your React app and store the card details, authorize the card, and capture a transaction.
Quickly embed Gr4vy in your React app to store card details, authorize payments, and capture a transaction.
Use @gr4vy/embed
in a non-React application.
Via the command line, install this package as follows.
npm install @gr4vy/embed-react --save-prod
# yarn add @gr4vy/embed-react --save
To use Gr4vy Embed, import the Gr4vyEmbed
component.
const Gr4vyEmbed = require(`@gr4vy/embed-react`)
// import Gr4vyEmbed from (`@gr4vy/embed-react)
<Gr4vyEmbed
gr4vyId='[GR4VY_ID]'
token='[TOKEN]'
amount={1299}
currency='USD'
country='US'
form='#payment-form'
/>
Note: Replace
[GR4VY_ID]
and[TOKEN]
with the ID of your environment and JWT access token. See any of our server-side SDKs for more details.
Gr4vy Embed expects the query for a HTML form to attach itself to. The
values for this element is a query string that can be parsed by
document.querySelector
. For example <form id="cardform">
would be
represented by #cardform
.
HTML Element | Example | Description |
---|---|---|
form | #order | Specifies the HTML <form> element or a query for the element to attach additional inputs to. Gr4vy will automatically insert a hidden Input field into this form containing the transaction ID. |
The options for this integration are as follows.
Field | Default | Description |
---|---|---|
amount | null | The amount to authorize or capture in the specified currency . only. |
apiHost | null | Sometimes required - The host (both hostname and port) of the Gr4vy API server to use. Can be omitted when using the gr4vyId option. |
buyerExternalIdentifier | null | An optional external ID for a Gr4vy buyer. The transaction will automatically be associated to a buyer with that external ID. If no buyer with this external ID exists then it will be ignored. This option is ignored if the buyerId is provided. |
buyerId | null | An optional ID for a Gr4vy buyer. The transaction will automatically be associated to a buyer with that ID. If no buyer with this ID exists then it will be ignored. |
country | null | Required A valid ISO 3166 country code. |
currency | null | Required A valid, active, 3-character ISO 4217 currency code to authorize or capture the amount for. |
externalIdentifier | null | An optional external identifier that can be supplied. This will automatically be associated to any resource created by Gr4vy and can subsequently be used to find a resource by that ID |
gr4vyId | null | Often required Gr4vy ID automatically sets the apiHost to api.<gr4vyId>.gr4vy.app and iframeHost to embed.<gr4vyId>.gr4vy.app . |
iframeHost | null | Sometimes required - The host (both hostname and port) of the server that hosts the Gr4vy payment form. Can be omitted when using the gr4vyId option. |
intent | authorize | authorize , capture , approve - Defines the intent of this API call. This determines the desired initial state of the transaction. |
locale | en | An optional locale, this consists of a ISO 639 Language Code followed by an optional ISO 3166 Country Code , e.g. en , en-gb or pt-br . |
onEvent | null | An optional event handler to bind to the form. This is called for various events, more on that below. |
showButton | false | Setting this value to true will show a Submit button within the UI. This is useful when the UI around this element does not contain a button |
store | ask | 'ask' , true , false - Explicitly store the payment method or ask the buyer, this is used when a buyerId or buyerExternalIdentifier is provided. |
theme | null | Theme customisation options (See Theming) |
token | null | Required - The server-side generated JWT token used to authenticate any of the API calls. |
The onEvent
option can be used to listen to certain events emitted from the form.
<Gr4vyEmbed
amount={1299}
currency='USD'
onEvent={(name, data) => {...}}
...
/>
})
Currently, we Gr4vy Embed emits the following events.
agumentError
Returned when the initial input (element
, options
) are incorrectly formatted or missing.
{
"code": "argumentError",
"option": "currency",
"message": "must be a valid number"
}
formUpdate
Returned when the form updates. Currently this only informs the developer if the form is valid.
{
"valid": false
}
transactionCreated
Returns a full transaction object when the transaction was successfully created.
{
"type": "transaction",
"id": "8724fd24-5489-4a5d-90fd-0604df7d3b83",
"status": "pending",
...
}
apiError
Returned when the form encounters an API error.
{
"type": "error",
"code": "unauthorized",
"status": 401,
"message": "No valid API authentication found",
"details": []
}
This project is provided as-is under the MIT license.
FAQs
Embed a credit card form in your React app and store the card details, authorize the card, and capture a transaction.
The npm package @gr4vy/embed-react receives a total of 669 weekly downloads. As such, @gr4vy/embed-react popularity was classified as not popular.
We found that @gr4vy/embed-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.