File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { BigNumber } from '@polymathnetwork/contract-wrappers' ;
22import { SecurityToken } from '../SecurityToken' ;
33import { Context } from '../../Context' ;
4+ import { Version } from '~/types' ;
45
56const params1 = {
67 symbol : 'TEST1' ,
78 name : 'Test Token 1' ,
89 address : '0x1' ,
910 owner : '0x3' ,
1011 tokenDetails : 'details' ,
11- version : [ new BigNumber ( 1 ) ] ,
12+ version : Version . V3_1_0 ,
1213 granularity : 3 ,
1314 totalSupply : new BigNumber ( 1000 ) ,
1415 currentCheckpoint : 2 ,
Original file line number Diff line number Diff line change @@ -6,14 +6,15 @@ import * as createCheckpointProcedure from '../../procedures/CreateCheckpoint';
66import { Shareholders } from '../../entities/SecurityToken/Shareholders' ;
77import { SubModule } from '../../entities/SecurityToken/SubModule' ;
88import { SecurityToken } from '../SecurityToken' ;
9+ import { Version } from '../../types' ;
910
1011const params1 = {
1112 symbol : 'TEST1' ,
1213 name : 'Test Token 1' ,
1314 address : '0x1' ,
1415 owner : '0x3' ,
1516 tokenDetails : 'details' ,
16- version : [ new BigNumber ( 1 ) ] ,
17+ version : Version . V3_1_0 ,
1718 granularity : 3 ,
1819 totalSupply : new BigNumber ( 1000 ) ,
1920 currentCheckpoint : 2 ,
You can’t perform that action at this time.
0 commit comments