@0xsequence/waas
Advanced tools
Comparing version
import { Intent as RawIntent, IntentName } from "../clients/intent.gen.js"; | ||
import { ethers } from 'ethers'; | ||
import { Session } from "../session/index.js"; | ||
@@ -12,3 +11,3 @@ export type Intent<T> = Omit<RawIntent, 'data' | 'signatures'> & { | ||
export declare function signIntent<T>(session: Session, intent: Intent<T>): Promise<SignedIntent<T>>; | ||
export declare function hashIntent<T>(intent: Intent<T>): ethers.Bytes; | ||
export declare function hashIntent<T>(intent: Intent<T>): Uint8Array; | ||
export declare function changeIntentTime<T>(intent: SignedIntent<T>, now: Date): Intent<T>; |
@@ -61,3 +61,3 @@ import { Intent } from "./base.js"; | ||
export declare function sendDelayedEncode({ to, value, abi, func, args, ...otherArgs }: SendDelayedEncodeArgs & BaseArgs): Intent<IntentDataSendTransaction>; | ||
export type Transaction = ethers.providers.TransactionRequest | TransactionRaw | TransactionERC20 | TransactionERC721 | TransactionERC1155 | TransactionDelayedEncode; | ||
export type Transaction = ethers.TransactionRequest | TransactionRaw | TransactionERC20 | TransactionERC721 | TransactionERC1155 | TransactionDelayedEncode; | ||
export declare function transaction(data: Omit<TransactionRaw, 'type'>): Transaction; | ||
@@ -64,0 +64,0 @@ export declare function erc20(data: Omit<TransactionERC20, 'type'> | Omit<SendERC20Args, 'chainId'>): Transaction; |
{ | ||
"name": "@0xsequence/waas", | ||
"version": "1.10.15", | ||
"version": "2.0.0", | ||
"description": "waas session client", | ||
@@ -17,4 +17,5 @@ "repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/waas", | ||
"jwt-decode": "^4.0.0", | ||
"@0xsequence/core": "1.10.15", | ||
"@0xsequence/network": "1.10.15" | ||
"@0xsequence/core": "2.0.0", | ||
"@0xsequence/network": "2.0.0", | ||
"@0xsequence/utils": "2.0.0" | ||
}, | ||
@@ -26,3 +27,3 @@ "files": [ | ||
"peerDependencies": { | ||
"ethers": ">=5.5" | ||
"ethers": ">=6" | ||
}, | ||
@@ -29,0 +30,0 @@ "devDependencies": { |
@@ -450,3 +450,3 @@ import { Observer, SequenceWaaSBase } from './base' | ||
const sessionId = (await this.waas.getSessionId()).toLowerCase() | ||
return ethers.utils.keccak256(ethers.utils.toUtf8Bytes(sessionId)) | ||
return ethers.id(sessionId) | ||
} | ||
@@ -453,0 +453,0 @@ |
@@ -256,3 +256,3 @@ import { | ||
const sessionId = await this.getSessionId() | ||
const idTokenHash = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(idToken)) | ||
const idTokenHash = ethers.id(idToken) | ||
const intent = await initiateAuth({ | ||
@@ -270,3 +270,3 @@ sessionId, | ||
const sessionId = await this.getSessionId() | ||
const idTokenHash = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(idToken)) | ||
const idTokenHash = ethers.id(idToken) | ||
const intent = await initiateAuth({ | ||
@@ -284,3 +284,3 @@ sessionId, | ||
const sessionId = await this.getSessionId() | ||
const ticketHash = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(sessionTicket)) | ||
const ticketHash = ethers.id(sessionTicket) | ||
const intent = await initiateAuth({ | ||
@@ -287,0 +287,0 @@ sessionId, |
@@ -25,3 +25,3 @@ import { IdentityType } from './clients/intent.gen' | ||
getIntentParams(): ChallengeIntentParams { | ||
const answer = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(this.challenge + this.sessionId)) | ||
const answer = ethers.id(this.challenge + this.sessionId) | ||
return { | ||
@@ -59,3 +59,3 @@ identityType: IdentityType.Guest, | ||
setAnswer(answer: string): void { | ||
this.hashedAnswer = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(this.challenge + answer)) | ||
this.hashedAnswer = ethers.id(this.challenge + answer) | ||
} | ||
@@ -77,3 +77,3 @@ | ||
const decoded = jwtDecode(this.idToken) | ||
const idTokenHash = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(this.idToken)) | ||
const idTokenHash = ethers.id(this.idToken) | ||
return { | ||
@@ -113,3 +113,3 @@ identityType: IdentityType.OIDC, | ||
getIntentParams(): ChallengeIntentParams { | ||
const ticketHash = ethers.utils.keccak256(ethers.utils.toUtf8Bytes(this.sessionTicket)) | ||
const ticketHash = ethers.id(this.sessionTicket) | ||
return { | ||
@@ -116,0 +116,0 @@ identityType: IdentityType.PlayFab, |
@@ -40,8 +40,8 @@ import { VERSION as PACKAGE_VERSION } from '@0xsequence/core' | ||
export function hashIntent<T>(intent: Intent<T>): ethers.Bytes { | ||
export function hashIntent<T>(intent: Intent<T>): Uint8Array { | ||
// Discard all fields other than the explicitly listed | ||
const { version, issuedAt, expiresAt, name, data } = intent | ||
const hashableIntent = { version, issuedAt, expiresAt, name, data } | ||
const encoded = ethers.utils.toUtf8Bytes(canonicalize(hashableIntent)) | ||
return ethers.utils.arrayify(ethers.utils.keccak256(encoded)) | ||
const encoded = ethers.toUtf8Bytes(canonicalize(hashableIntent)) | ||
return ethers.getBytes(ethers.keccak256(encoded)) | ||
} | ||
@@ -48,0 +48,0 @@ |
@@ -19,4 +19,4 @@ import { ethers } from 'ethers' | ||
network: chainId.toString(), | ||
message: message.startsWith('0x') ? message : ethers.utils.hexlify(ethers.utils.toUtf8Bytes(message)) | ||
message: message.startsWith('0x') ? message : ethers.hexlify(ethers.toUtf8Bytes(message)) | ||
}) | ||
} |
@@ -17,2 +17,3 @@ import { Intent, makeIntent } from './base' | ||
import { ethers } from 'ethers' | ||
import { toHexString } from '@0xsequence/utils' | ||
@@ -83,3 +84,3 @@ interface BaseArgs { | ||
transactions: transactions.map(tx => { | ||
if (!tx.to || tx.to === ethers.constants.AddressZero) { | ||
if (!tx.to || tx.to === ethers.ZeroAddress) { | ||
throw new Error('Contract creation not supported') | ||
@@ -95,4 +96,4 @@ } | ||
to: tx.to, | ||
value: ethers.BigNumber.from(tx.value || 0).toHexString(), | ||
data: ethers.utils.hexlify(tx.data || []) | ||
value: toHexString(BigInt(tx.value || 0)), | ||
data: ethers.hexlify(tx.data || '0x') | ||
} | ||
@@ -117,3 +118,3 @@ }) | ||
transactions: withTransactionFee(transactions, transactionsFeeOption).map(tx => { | ||
if (!tx.to || tx.to === ethers.constants.AddressZero) { | ||
if (!tx.to || tx.to === ethers.ZeroAddress) { | ||
throw new Error('Contract creation not supported') | ||
@@ -129,4 +130,4 @@ } | ||
to: tx.to, | ||
value: ethers.BigNumber.from(tx.value || 0).toHexString(), | ||
data: ethers.utils.hexlify(tx.data || []) | ||
value: toHexString(BigInt(tx.value || 0)), | ||
data: ethers.hexlify(tx.data || '0x') | ||
} | ||
@@ -218,3 +219,3 @@ }), | ||
id: v.id, | ||
amount: ethers.BigNumber.from(v.amount).toString() | ||
amount: BigInt(v.amount).toString() | ||
})) | ||
@@ -240,3 +241,3 @@ | ||
to, | ||
value: ethers.BigNumber.from(value).toString(), | ||
value: BigInt(value).toString(), | ||
data: { abi, func, args } | ||
@@ -250,3 +251,3 @@ }) | ||
export type Transaction = | ||
| ethers.providers.TransactionRequest | ||
| ethers.TransactionRequest | ||
| TransactionRaw | ||
@@ -309,3 +310,3 @@ | TransactionERC20 | ||
id: v.id, | ||
amount: ethers.BigNumber.from(v.amount).toString() | ||
amount: v.amount.toString() | ||
})), | ||
@@ -321,3 +322,3 @@ tokenAddress: sendERC1155Args.token, | ||
id: v.id, | ||
amount: ethers.BigNumber.from(v.amount).toString() | ||
amount: v.amount | ||
})), | ||
@@ -343,3 +344,3 @@ tokenAddress: transactionERC1155.tokenAddress, | ||
to: sendDelayedEncodeArgs.to, | ||
value: ethers.BigNumber.from(sendDelayedEncodeArgs.value).toString(), | ||
value: toHexString(BigInt(sendDelayedEncodeArgs.value)), | ||
data: { | ||
@@ -392,4 +393,4 @@ abi: sendDelayedEncodeArgs.abi, | ||
function isEthersTx(tx: Transaction): tx is ethers.providers.TransactionRequest { | ||
function isEthersTx(tx: Transaction): tx is ethers.TransactionRequest { | ||
return !['transaction', 'erc20send', 'erc721send', 'erc1155send', 'delayedEncode'].includes(tx.type as any) | ||
} |
@@ -36,3 +36,3 @@ import { ethers } from 'ethers' | ||
return ethers.utils.hexlify(pubKeyTypedRaw) | ||
return ethers.hexlify(pubKeyTypedRaw) | ||
}, | ||
@@ -43,3 +43,3 @@ sign: async (message: string | Uint8Array) => { | ||
message = message.slice(2) | ||
message = ethers.utils.arrayify(message) | ||
message = ethers.getBytes(message) | ||
} else { | ||
@@ -50,3 +50,3 @@ message = encoder.encode(message) | ||
const signatureBuff = await cryptoBackend.sign({ name: 'ECDSA', hash: { name: 'SHA-256' } }, keys.privateKey, message) | ||
return ethers.utils.hexlify(new Uint8Array(signatureBuff)) | ||
return ethers.hexlify(new Uint8Array(signatureBuff)) | ||
}, | ||
@@ -94,3 +94,3 @@ clear: async () => { | ||
return ethers.utils.hexlify(pubKeyTypedRaw) | ||
return ethers.hexlify(pubKeyTypedRaw) | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
12955
0.02%2339243
-0.11%8
14.29%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
Updated
Updated