Skip to content

Commit 33113c1

Browse files
committed
Merge remote-tracking branch 'origin/main' into add-positionsCreate
2 parents d297248 + 472d01f commit 33113c1

Some content is hidden

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

47 files changed

+1171
-238
lines changed
File renamed without changes.

β€Žlib/ethereum/erc20/allowance.tsβ€Ž renamed to β€Žlib/common/erc20/allowance.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ethers } from 'ethers'
2-
import { execute, QueryOption } from '../../common/utils/execute'
2+
import { execute, QueryOption } from '../utils/execute'
33

44
export type CreateAllowanceCaller = (
55
contract: ethers.Contract

β€Žlib/ethereum/erc20/approve.spec.tsβ€Ž renamed to β€Žlib/common/erc20/approve.spec.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createApproveCaller } from './approve'
2-
import { stubbedSendTx } from '../../common/utils/for-test'
2+
import { stubbedSendTx } from '../utils/for-test'
33

44
describe('approve.spec.ts', () => {
55
describe('createApproveCaller', () => {

β€Žlib/ethereum/erc20/approve.tsβ€Ž renamed to β€Žlib/common/erc20/approve.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
execute,
44
FallbackableOverrides,
55
MutationOption,
6-
} from '../../common/utils/execute'
6+
} from '../utils/execute'
77
import { T } from 'ramda'
88

99
export type CreateApproveCaller = (

β€Žlib/ethereum/erc20/balanceOf.tsβ€Ž renamed to β€Žlib/common/erc20/balanceOf.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ethers } from 'ethers'
2-
import { execute, QueryOption } from '../../common/utils/execute'
2+
import { execute, QueryOption } from '../utils/execute'
33

44
export type CreateBalanceOfCaller = (
55
contract: ethers.Contract

β€Žlib/ethereum/erc20/decimals.tsβ€Ž renamed to β€Žlib/common/erc20/decimals.tsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ethers } from 'ethers'
2-
import { execute, QueryOption } from '../../common/utils/execute'
2+
import { execute, QueryOption } from '../utils/execute'
33
import { always } from 'ramda'
44

55
export type CreateDecimalsCaller = (
File renamed without changes.

0 commit comments

Comments
Β (0)