
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@smontero/gyftie-listener
Advanced tools
Package that simplifies the listening of gyftie contract related events
Uses the dfuse GraphQL API and provides easy access to Gyftie related data. At the moment only subscriptions to order book changes is available.
Here is an example on how to make use of it:
First create a GyftieListener object, indicating the parameters to connect to the dfuse Endpoint:
const listener = new GyftieListener({
apiKey: "your-api-key",
network: "mainnet",
endpoint: "mainnet.eos.dfuse.io",
});
Call the orderBookChanges on this object, optionally pass in:
If no parameter is sent, then the stream starts from the head of the chain.
const subscription = await listener.orderBookChanges({
blockNum: "42261484",
});
Use the Observable object returned from the function call to subscribe to the stream.
subscription.subscribe({
next: data => {
console.log(data);
},
error: error => console.log(error),
});
An example payload returned from the stream:
{ orderId: '49',
price: 0.035,
amount: 600,
oldAmount: null,
operationToken: 'GFT',
counterpartToken: 'EOS',
orderValue: 21,
oldOrderValue: null,
orderType: 'BUY_LIMIT',
account: 'danielflora3',
amountChange: 600,
orderValueChange: 21,
createdAt: 1549934230,
tableOperation: 'REM',
action: 'delbuyorder',
actionSeq: '5724899971',
hourOfDay: 21,
operationTime: '2019-03-22T21:54:03.5Z',
blockNum: 49015282,
cursor: '32x4kf3HWXl80D0JYnFju_e7IJ84B19tXQnvIENC0Y2i-XaT3MykAQ==',
undo: false }
FAQs
Package that simplifies the listening of gyftie contract related events
We found that @smontero/gyftie-listener demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.