-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Problem: No module to do NFT transfers via IBC (#860)
Solution: Add nft-transfer module. Note: Have to include ibc-go git submodule for building protobuf files. Can be removed once this issue is closed: cosmos/ibc-go#1345
- Loading branch information
1 parent
d86e35e
commit 3e3d7ee
Showing
64 changed files
with
8,121 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[flake8] | ||
max-line-length = 88 | ||
extend-ignore = E203 | ||
exclude = .git,__pycache__,./pystarport/pystarport/tendermint,./pystarport/pystarport/proto_python,./third_party/cosmos-sdk | ||
exclude = .git,__pycache__,./pystarport/pystarport/tendermint,./pystarport/pystarport/proto_python,./third_party/cosmos-sdk,./third_party/ibc-go |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
[submodule "cosmos-sdk"] | ||
path = third_party/cosmos-sdk | ||
url = https://github.com/cosmos/cosmos-sdk.git | ||
|
||
[submodule "ibc-go"] | ||
path = third_party/ibc-go | ||
url = https://github.com/cosmos/ibc-go.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
version: v1 | ||
directories: | ||
- proto | ||
- third_party/ibc-go/proto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
local default = { | ||
accounts: [ | ||
{ | ||
name: 'relayer', | ||
coins: '100cro', | ||
}, | ||
{ | ||
name: 'signer', | ||
coins: '200cro', | ||
}, | ||
], | ||
genesis: {}, | ||
}; | ||
local validator = { | ||
coins: '10cro', | ||
staked: '10cro', | ||
}; | ||
|
||
{ | ||
'ibc-0': default { | ||
validators: [validator { base_port: 26650 }, validator], | ||
}, | ||
'ibc-1': default { | ||
validators: [validator { base_port: port } for port in [26750, 26760]], | ||
}, | ||
'ibc-2': default { | ||
validators: [validator { base_port: port } for port in [26850, 26860]], | ||
}, | ||
relayer: {}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.