Socket
Socket
Sign inDemoInstall

@0xsequence/relayer

Package Overview
Dependencies
Maintainers
6
Versions
475
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@0xsequence/relayer - npm Package Compare versions

Comparing version 0.0.0-20240829183049 to 0.0.0-20240903183150

6

dist/0xsequence-relayer.cjs.dev.js

@@ -1083,3 +1083,3 @@ 'use strict';

});
utils.logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, utils.bigintReplacer)}`);
utils.logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options)}`);
return {

@@ -1137,3 +1137,3 @@ options,

var _this = this;
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, utils.bigintReplacer)} with quote ${JSON.stringify(quote, utils.bigintReplacer)}`);
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}`);
let typecheckedQuote;

@@ -1160,3 +1160,3 @@ if (quote !== undefined) {

});
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, utils.bigintReplacer)}`);
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`);
if (waitForReceipt) {

@@ -1163,0 +1163,0 @@ return this.wait(signedTxs.intent.id);

@@ -1083,3 +1083,3 @@ 'use strict';

});
utils.logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, utils.bigintReplacer)}`);
utils.logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options)}`);
return {

@@ -1137,3 +1137,3 @@ options,

var _this = this;
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, utils.bigintReplacer)} with quote ${JSON.stringify(quote, utils.bigintReplacer)}`);
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}`);
let typecheckedQuote;

@@ -1160,3 +1160,3 @@ if (quote !== undefined) {

});
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, utils.bigintReplacer)}`);
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`);
if (waitForReceipt) {

@@ -1163,0 +1163,0 @@ return this.wait(signedTxs.intent.id);

import { ethers } from 'ethers';
import { logger, getFetchRequest, bigintReplacer, toHexString } from '@0xsequence/utils';
import { logger, getFetchRequest, toHexString } from '@0xsequence/utils';
import { walletContracts } from '@0xsequence/abi';

@@ -1079,3 +1079,3 @@ import { commons } from '@0xsequence/core';

});
logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, bigintReplacer)}`);
logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options)}`);
return {

@@ -1133,3 +1133,3 @@ options,

var _this = this;
logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, bigintReplacer)} with quote ${JSON.stringify(quote, bigintReplacer)}`);
logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}`);
let typecheckedQuote;

@@ -1156,3 +1156,3 @@ if (quote !== undefined) {

});
logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, bigintReplacer)}`);
logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`);
if (waitForReceipt) {

@@ -1159,0 +1159,0 @@ return this.wait(signedTxs.intent.id);

{
"name": "@0xsequence/relayer",
"version": "0.0.0-20240829183049",
"version": "0.0.0-20240903183150",
"description": "relayer sub-package for Sequence",

@@ -12,5 +12,5 @@ "repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/relayer",

"dependencies": {
"@0xsequence/abi": "0.0.0-20240829183049",
"@0xsequence/core": "0.0.0-20240829183049",
"@0xsequence/utils": "0.0.0-20240829183049"
"@0xsequence/abi": "0.0.0-20240903183150",
"@0xsequence/core": "0.0.0-20240903183150",
"@0xsequence/utils": "0.0.0-20240903183150"
},

@@ -23,4 +23,4 @@ "peerDependencies": {

"ethers": "^6.13.0",
"@0xsequence/tests": "0.0.0-20240829183049",
"@0xsequence/signhub": "0.0.0-20240829183049"
"@0xsequence/signhub": "0.0.0-20240903183150",
"@0xsequence/tests": "0.0.0-20240903183150"
},

@@ -27,0 +27,0 @@ "files": [

@@ -5,3 +5,3 @@ import { ethers } from 'ethers'

import { commons } from '@0xsequence/core'
import { bigintReplacer, getFetchRequest, logger, toHexString } from '@0xsequence/utils'
import { getFetchRequest, logger, toHexString } from '@0xsequence/utils'

@@ -156,3 +156,3 @@ export { proto }

logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, bigintReplacer)}`)
logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options)}`)
return { options, quote: { _tag: 'FeeQuote', _quote: quote } }

@@ -203,3 +203,3 @@ } else {

logger.info(
`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, bigintReplacer)} with quote ${JSON.stringify(quote, bigintReplacer)}`
`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}`
)

@@ -231,3 +231,3 @@

logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, bigintReplacer)}`)
logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`)

@@ -234,0 +234,0 @@ if (waitForReceipt) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc