Add block-sync to application.
This commit is contained in:
@@ -1 +1,2 @@
|
||||
export * from './transaction';
|
||||
export * from './settings';
|
||||
|
||||
18
src/app/_models/settings.ts
Normal file
18
src/app/_models/settings.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
export class Settings {
|
||||
w3: W3 = {
|
||||
engine: undefined,
|
||||
provider: undefined,
|
||||
};
|
||||
scanFilter: any;
|
||||
registry: any;
|
||||
txHelper: any;
|
||||
|
||||
constructor(scanFilter: any) {
|
||||
this.scanFilter = scanFilter;
|
||||
}
|
||||
}
|
||||
|
||||
export class W3 {
|
||||
engine: any;
|
||||
provider: any;
|
||||
}
|
||||
Reference in New Issue
Block a user