@@ -16,14 +16,14 @@ import {
16
16
partiallySignTransaction ,
17
17
signTransaction ,
18
18
} from '../signatures' ;
19
- import { OrderedMap , Transaction , TransactionMessageBytes } from '../transaction' ;
19
+ import { SignaturesMap , Transaction , TransactionMessageBytes } from '../transaction' ;
20
20
21
21
jest . mock ( '@solana/addresses' ) ;
22
22
jest . mock ( '@solana/keys' ) ;
23
23
24
24
describe ( 'getSignatureFromTransaction' , ( ) => {
25
25
it ( "returns the signature associated with a transaction's fee payer" , ( ) => {
26
- const signatures : OrderedMap < Address , SignatureBytes | null > = { } ;
26
+ const signatures : SignaturesMap = { } ;
27
27
signatures [ '123' as Address ] = new Uint8Array ( new Array ( 64 ) . fill ( 9 ) ) as SignatureBytes ;
28
28
const transactionWithFeePayerSignature : Transaction = {
29
29
messageBytes : new Uint8Array ( ) as ReadonlyUint8Array as TransactionMessageBytes ,
@@ -405,7 +405,7 @@ describe('assertTransactionIsFullySigned', () => {
405
405
const mockSignatureB = new Uint8Array ( 1 ) as SignatureBytes ;
406
406
407
407
it ( 'throws if the transaction has no signature for the fee payer' , ( ) => {
408
- const signatures : OrderedMap < Address , SignatureBytes | null > = { } ;
408
+ const signatures : SignaturesMap = { } ;
409
409
signatures [ mockPublicKeyAddressA ] = null ;
410
410
const transaction : Transaction = {
411
411
messageBytes : new Uint8Array ( ) as ReadonlyUint8Array as TransactionMessageBytes ,
@@ -420,7 +420,7 @@ describe('assertTransactionIsFullySigned', () => {
420
420
} ) ;
421
421
422
422
it ( 'throws all missing signers if the transaction has no signature for multiple signers' , ( ) => {
423
- const signatures : OrderedMap < Address , SignatureBytes | null > = { } ;
423
+ const signatures : SignaturesMap = { } ;
424
424
signatures [ mockPublicKeyAddressA ] = null ;
425
425
signatures [ mockPublicKeyAddressB ] = null ;
426
426
const transaction : Transaction = {
@@ -436,7 +436,7 @@ describe('assertTransactionIsFullySigned', () => {
436
436
} ) ;
437
437
438
438
it ( 'does not throw if the transaction is signed by its only signer' , ( ) => {
439
- const signatures : OrderedMap < Address , SignatureBytes | null > = { } ;
439
+ const signatures : SignaturesMap = { } ;
440
440
signatures [ mockPublicKeyAddressA ] = mockSignatureA ;
441
441
const transaction : Transaction = {
442
442
messageBytes : new Uint8Array ( ) as ReadonlyUint8Array as TransactionMessageBytes ,
@@ -447,7 +447,7 @@ describe('assertTransactionIsFullySigned', () => {
447
447
} ) ;
448
448
449
449
it ( 'does not throw if the transaction is signed by all its signers' , ( ) => {
450
- const signatures : OrderedMap < Address , SignatureBytes | null > = { } ;
450
+ const signatures : SignaturesMap = { } ;
451
451
signatures [ mockPublicKeyAddressA ] = mockSignatureA ;
452
452
signatures [ mockPublicKeyAddressB ] = mockSignatureB ;
453
453
const transaction : Transaction = {
@@ -459,7 +459,7 @@ describe('assertTransactionIsFullySigned', () => {
459
459
} ) ;
460
460
461
461
it ( 'does not throw if the transaction has no signatures' , ( ) => {
462
- const signatures : OrderedMap < Address , SignatureBytes | null > = { } ;
462
+ const signatures : SignaturesMap = { } ;
463
463
const transaction : Transaction = {
464
464
messageBytes : new Uint8Array ( ) as ReadonlyUint8Array as TransactionMessageBytes ,
465
465
signatures,
0 commit comments