diff --git a/src/model/Network.ts b/src/model/Network.ts index 7c2cef1..14127f0 100644 --- a/src/model/Network.ts +++ b/src/model/Network.ts @@ -13,6 +13,7 @@ export class Network extends ChainObject { } type: 'network'; + networkName: string; constructor(info: Partial) { super(info); @@ -45,5 +46,6 @@ export class Network extends ChainObject { } } this.type = 'network'; + this.networkName = info.networkName; } } \ No newline at end of file