Skip to content

Commit f79fac7

Browse files
committed
Revert "Сopyright fix"
This reverts commit bbf54dd.
1 parent bbf54dd commit f79fac7

File tree

84 files changed

+89
-89
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+89
-89
lines changed

README.md

+1-1

build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
buildscript {

gradle/libs.versions.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[versions]
2-
kotlinVersion = "1.6.10"
2+
kotlinVersion = "1.5.31"
33
androidAppCompatVersion = "1.3.1"
44
materialDesignVersion = "1.4.0"
55
lifecycleVersion = "2.3.1"
6-
coroutinesVersion = "1.6.0"
7-
kotlinxSerializationVersion = "1.3.1"
6+
coroutinesVersion = "1.5.1-native-mt"
7+
kotlinxSerializationVersion = "1.2.2"
88
kbignumVersion = "2.2.0"
99
klockVersion = "2.2.2"
10-
ktorClientVersion = "1.6.7"
10+
ktorClientVersion = "1.6.1"
1111
mokoTestVersion = "0.4.0"
1212
mokoWeb3Version = "0.18.0"
1313
multidexVersion = "2.0.1"

sample/android-app/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
plugins {

sample/android-app/src/main/java/com/icerockdev/app/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package com.icerockdev.app

sample/ios-app/src/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
import UIKit

sample/ios-app/src/TestViewController.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
import UIKit

sample/mpp-library/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
plugins {

sample/mpp-library/src/commonMain/kotlin/com/icerockdev/library/Test.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@file:Suppress("NoEmptyClassBody")
22
/*
3-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
3+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
44
*/
55

66
package com.icerockdev.library

settings.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
enableFeaturePreview("VERSION_CATALOGS")

web3-build-logic/build.gradle.kts

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ repositories {
1111

1212
dependencies {
1313
api("dev.icerock:mobile-multiplatform:0.12.0")
14-
api("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
14+
api("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31")
1515
api("com.android.tools.build:gradle:4.2.1")
16-
api("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.18.1")
16+
api("io.gitlab.arturbosch.detekt:detekt-gradle-plugin:1.15.0")
1717
}

web3/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
plugins {

web3/src/commonMain/kotlin/dev.icerock.moko.web3/BlockHash.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/BlockInfo.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
@file:UseSerializers(BigIntSerializer::class)

web3/src/commonMain/kotlin/dev.icerock.moko.web3/BlockState.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/ContractAddress.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/Erc20TokenAddress.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
@file:Suppress("ClassName")

web3/src/commonMain/kotlin/dev.icerock.moko.web3/EthereumAddress.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/NewHeadsWeb3SocketEvent.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/SyncingWeb3SocketEvent.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/TransactionHash.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/TransactionInfo.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
@file:UseSerializers(BigIntSerializer::class)

web3/src/commonMain/kotlin/dev.icerock.moko.web3/UnknownWeb3RpcException.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/WalletAddress.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/Web3.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/Web3Executor.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/Web3RpcException.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/Web3RpcRequest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/Web3Socket.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3

web3/src/commonMain/kotlin/dev.icerock.moko.web3/annotation/DelicateWeb3Api.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.annotation

web3/src/commonMain/kotlin/dev.icerock.moko.web3/annotation/Web3Stub.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.annotation

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/ABIDecoder.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract
@@ -164,7 +164,7 @@ object ABIDecoder {
164164
put("type", typeAnnotation)
165165
})
166166
}
167-
} as List<JsonObject>,
167+
},
168168
callData = callData
169169
)
170170

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/ABIEncoder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/AddressParam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/BoolParam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/BytesParam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/ContractRPC.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
@file:UseSerializers(BigIntSerializer::class)

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/ERC20Token.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/Encoder.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/Encoders.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/ListParam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/SizedBytesParam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/SmartContract.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/StringParam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/TupleParam.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/UInt256Param.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract

web3/src/commonMain/kotlin/dev.icerock.moko.web3/contract/internal/FindAbiEntityByName.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.contract.internal

web3/src/commonMain/kotlin/dev.icerock.moko.web3/crypto/ChecksummedAddress.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.crypto

web3/src/commonMain/kotlin/dev.icerock.moko.web3/crypto/KeccakId.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2021 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2021 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.crypto

web3/src/commonMain/kotlin/dev.icerock.moko.web3/entity/LogEvent.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
@file:UseSerializers(BigIntSerializer::class)

web3/src/commonMain/kotlin/dev.icerock.moko.web3/entity/RpcRequest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.entity

web3/src/commonMain/kotlin/dev.icerock.moko.web3/entity/RpcResponse.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
package dev.icerock.moko.web3.entity

web3/src/commonMain/kotlin/dev.icerock.moko.web3/entity/Transaction.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020 Symbiosis Labs Ltd. Use of this source code is governed by the Apache 2.0 license.
2+
* Copyright 2020 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
33
*/
44

55
@file:UseSerializers(BigIntSerializer::class)

0 commit comments

Comments
 (0)