-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add functionality to extend tx types (#6493)
* draft * finish * lint * add documentation * fix unit tests * add unit tests * add unit tests * increase coverage * increase coverage * fix changelog syncing * fix test
- Loading branch information
Showing
18 changed files
with
781 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
packages/web3-eth-accounts/test/unit/tx/registerNewTx.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
This file is part of web3.js. | ||
web3.js is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Lesser General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
web3.js is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with web3.js. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import { TransactionFactory } from '../../../src/tx/transactionFactory'; | ||
import { BaseTransaction } from '../../../src/tx/baseTransaction'; | ||
import { TxData, TxOptions } from '../../../src/tx'; | ||
|
||
describe('Register new TX', () => { | ||
it('validateCannotExceedMaxInteger()', () => { | ||
const TYPE = 20; | ||
// @ts-expect-error not implement all methods | ||
class SomeNewTxType extends BaseTransaction<any> { | ||
public constructor(txData: TxData, opts: TxOptions = {}) { | ||
super({ ...txData, type: TYPE }, opts); | ||
} | ||
public static fromTxData() { | ||
return 'new fromTxData'; | ||
} | ||
public static fromSerializedTx() { | ||
return 'new fromSerializedData'; | ||
} | ||
} | ||
TransactionFactory.registerTransactionType(TYPE, SomeNewTxType); | ||
const txData = { | ||
from: '0x', | ||
to: '0x', | ||
value: '0x1', | ||
type: TYPE, | ||
}; | ||
expect(TransactionFactory.fromTxData(txData)).toBe('new fromTxData'); | ||
expect(TransactionFactory.fromSerializedData(new Uint8Array([TYPE, 10]))).toBe( | ||
'new fromSerializedData', | ||
); | ||
}); | ||
}); |
24 changes: 24 additions & 0 deletions
24
packages/web3-eth-accounts/test/unit/tx/staticMethods.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
This file is part of web3.js. | ||
web3.js is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU Lesser General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
web3.js is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU Lesser General Public License for more details. | ||
You should have received a copy of the GNU Lesser General Public License | ||
along with web3.js. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
import { BaseTransaction } from '../../../src/tx/baseTransaction'; | ||
|
||
describe('[BaseTransaction]', () => { | ||
it('Initialization', () => { | ||
expect(typeof BaseTransaction.fromTxData).toBe('function'); | ||
expect(typeof BaseTransaction.fromSerializedTx).toBe('function'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.