@@ -267,7 +267,7 @@ export class Api {
267267
268268 /** Convert actions to hex */
269269 public async serializeActions ( actions : ser . Action [ ] ) : Promise < ser . SerializedAction [ ] > {
270- const builtInActions = [ 'transfer' , 'issue' , 'redeem ' , 'settokenmeta' , 'txfee' ] ;
270+ const builtInActions = [ 'transfer' , 'issue' , 'retire ' , 'settokenmeta' , 'txfee' ] ;
271271 return await Promise . all ( actions . map ( async ( action ) => {
272272 const { account, name, authorization, data } = action ;
273273 const contract = await this . getContract ( account ) ;
@@ -295,7 +295,7 @@ export class Api {
295295
296296 /** Convert actions from hex */
297297 public async deserializeActions ( actions : ser . Action [ ] ) : Promise < ser . Action [ ] > {
298- const builtInActions = [ 'transfer' , 'issue' , 'redeem ' , 'settokenmeta' , 'txfee' ] ;
298+ const builtInActions = [ 'transfer' , 'issue' , 'retire ' , 'settokenmeta' , 'txfee' ] ;
299299 return await Promise . all ( actions . map ( async ( { account, name, authorization, data } ) => {
300300 const contract = await this . getContract ( account ) ;
301301 let hasBuiltInAbi = false ;
0 commit comments