diff --git a/lib/src/core/block_information.dart b/lib/src/core/block_information.dart index 4db206a1..6b213010 100644 --- a/lib/src/core/block_information.dart +++ b/lib/src/core/block_information.dart @@ -1,4 +1,4 @@ -part of web3dart; +part of 'package:web3dart/web3dart.dart'; class BlockInformation { BlockInformation({ diff --git a/lib/src/core/ether_amount.dart b/lib/src/core/ether_amount.dart index f9a5062b..a007cfdd 100644 --- a/lib/src/core/ether_amount.dart +++ b/lib/src/core/ether_amount.dart @@ -1,4 +1,4 @@ -part of web3dart; +part of 'package:web3dart/web3dart.dart'; /// Utility class to easily convert amounts of Ether into different units of /// quantities. diff --git a/lib/src/core/ether_unit.dart b/lib/src/core/ether_unit.dart index 42e35cee..1440a611 100644 --- a/lib/src/core/ether_unit.dart +++ b/lib/src/core/ether_unit.dart @@ -1,4 +1,4 @@ -part of web3dart; +part of 'package:web3dart/web3dart.dart'; enum EtherUnit { /// Wei, the smallest and atomic amount of Ether diff --git a/lib/src/utils/length_tracking_byte_sink.dart b/lib/src/utils/length_tracking_byte_sink.dart index eb6c6ccf..a3789b6b 100644 --- a/lib/src/utils/length_tracking_byte_sink.dart +++ b/lib/src/utils/length_tracking_byte_sink.dart @@ -1,4 +1,4 @@ -part of web3dart; +part of 'package:web3dart/web3dart.dart'; class LengthTrackingByteSink extends ByteConversionSinkBase { final Uint8Buffer _buffer = Uint8Buffer();