@0xsequence/relayer
Advanced tools
Comparing version 0.0.0-20240903183150 to 0.0.0-20240903195246
@@ -1083,3 +1083,3 @@ 'use strict'; | ||
}); | ||
utils.logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options)}`); | ||
utils.logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, utils.bigintReplacer)}`); | ||
return { | ||
@@ -1137,3 +1137,3 @@ options, | ||
var _this = this; | ||
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}`); | ||
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, utils.bigintReplacer)} with quote ${JSON.stringify(quote, utils.bigintReplacer)}`); | ||
let typecheckedQuote; | ||
@@ -1160,3 +1160,3 @@ if (quote !== undefined) { | ||
}); | ||
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`); | ||
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, utils.bigintReplacer)}`); | ||
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.logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, utils.bigintReplacer)}`); | ||
return { | ||
@@ -1137,3 +1137,3 @@ options, | ||
var _this = this; | ||
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}`); | ||
utils.logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, utils.bigintReplacer)} with quote ${JSON.stringify(quote, utils.bigintReplacer)}`); | ||
let typecheckedQuote; | ||
@@ -1160,3 +1160,3 @@ if (quote !== undefined) { | ||
}); | ||
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`); | ||
utils.logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, utils.bigintReplacer)}`); | ||
if (waitForReceipt) { | ||
@@ -1163,0 +1163,0 @@ return this.wait(signedTxs.intent.id); |
import { ethers } from 'ethers'; | ||
import { logger, getFetchRequest, toHexString } from '@0xsequence/utils'; | ||
import { logger, getFetchRequest, bigintReplacer, 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)}`); | ||
logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, bigintReplacer)}`); | ||
return { | ||
@@ -1133,3 +1133,3 @@ options, | ||
var _this = this; | ||
logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}`); | ||
logger.info(`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, bigintReplacer)} with quote ${JSON.stringify(quote, bigintReplacer)}`); | ||
let typecheckedQuote; | ||
@@ -1156,3 +1156,3 @@ if (quote !== undefined) { | ||
}); | ||
logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`); | ||
logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, bigintReplacer)}`); | ||
if (waitForReceipt) { | ||
@@ -1159,0 +1159,0 @@ return this.wait(signedTxs.intent.id); |
{ | ||
"name": "@0xsequence/relayer", | ||
"version": "0.0.0-20240903183150", | ||
"version": "0.0.0-20240903195246", | ||
"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-20240903183150", | ||
"@0xsequence/core": "0.0.0-20240903183150", | ||
"@0xsequence/utils": "0.0.0-20240903183150" | ||
"@0xsequence/abi": "0.0.0-20240903195246", | ||
"@0xsequence/core": "0.0.0-20240903195246", | ||
"@0xsequence/utils": "0.0.0-20240903195246" | ||
}, | ||
@@ -23,4 +23,4 @@ "peerDependencies": { | ||
"ethers": "^6.13.0", | ||
"@0xsequence/signhub": "0.0.0-20240903183150", | ||
"@0xsequence/tests": "0.0.0-20240903183150" | ||
"@0xsequence/signhub": "0.0.0-20240903195246", | ||
"@0xsequence/tests": "0.0.0-20240903195246" | ||
}, | ||
@@ -27,0 +27,0 @@ "files": [ |
@@ -5,3 +5,3 @@ import { ethers } from 'ethers' | ||
import { commons } from '@0xsequence/core' | ||
import { getFetchRequest, logger, toHexString } from '@0xsequence/utils' | ||
import { bigintReplacer, getFetchRequest, logger, toHexString } from '@0xsequence/utils' | ||
@@ -156,3 +156,3 @@ export { proto } | ||
logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options)}`) | ||
logger.info(`[rpc-relayer/getFeeOptions] got refund options ${JSON.stringify(options, bigintReplacer)}`) | ||
return { options, quote: { _tag: 'FeeQuote', _quote: quote } } | ||
@@ -203,3 +203,3 @@ } else { | ||
logger.info( | ||
`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs)} with quote ${JSON.stringify(quote)}` | ||
`[rpc-relayer/relay] relaying signed meta-transactions ${JSON.stringify(signedTxs, bigintReplacer)} with quote ${JSON.stringify(quote, bigintReplacer)}` | ||
) | ||
@@ -231,3 +231,3 @@ | ||
logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn)}`) | ||
logger.info(`[rpc-relayer/relay] got relay result ${JSON.stringify(metaTxn, bigintReplacer)}`) | ||
@@ -234,0 +234,0 @@ if (waitForReceipt) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
245216
+ Added@0xsequence/abi@0.0.0-20240903195246(transitive)
+ Added@0xsequence/core@0.0.0-20240903195246(transitive)
+ Added@0xsequence/utils@0.0.0-20240903195246(transitive)
- Removed@0xsequence/abi@0.0.0-20240903183150(transitive)
- Removed@0xsequence/core@0.0.0-20240903183150(transitive)
- Removed@0xsequence/utils@0.0.0-20240903183150(transitive)